seq: blaze822_seq_load: remove dead assignment

Found by scan-build/clang 10.0.0
pull/181/head
Leah Neukirchen 4 years ago
parent 3f61249c05
commit b2a6e3dcc0

@ -114,10 +114,10 @@ blaze822_seq_load(char *map)
if (!f) if (!f)
return -1; return -1;
struct msgnum key, **result; struct msgnum key;
key.file = f; key.file = f;
if (!(result = tfind(&key, &msgnums, msgnumorder))) { if (!tfind(&key, &msgnums, msgnumorder)) {
struct msgnum *c = malloc(sizeof (struct msgnum)); struct msgnum *c = malloc(sizeof (struct msgnum));
c->file = f; c->file = f;
c->pos = line; c->pos = line;

Loading…
Cancel
Save