about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--seq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/seq.c b/seq.c
index a75ee3f..35accdb 100644
--- a/seq.c
+++ b/seq.c
@@ -114,10 +114,10 @@ blaze822_seq_load(char *map)
 		if (!f)
 			return -1;
 
-		struct msgnum key, **result;
+		struct msgnum key;
 		key.file = f;
 
-		if (!(result = tfind(&key, &msgnums, msgnumorder))) {
+		if (!tfind(&key, &msgnums, msgnumorder)) {
 			struct msgnum *c = malloc(sizeof (struct msgnum));
 			c->file = f;
 			c->pos = line;