aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-11-02 18:07:02 +0100
committerHarald Welte <laforge@gnumonks.org>2011-11-02 18:07:02 +0100
commitef71162a7412a49afe5005e51e7e7b70d6cead07 (patch)
tree6053884ef0f3cb43517202af79426f25993b054a
parentb841e57f0b9baa1b8e67f1af8093122406020940 (diff)
queue: fix copy+paste mistake in debug statements
-rw-r--r--gtp/queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtp/queue.c b/gtp/queue.c
index 2880c0f..160b995 100644
--- a/gtp/queue.c
+++ b/gtp/queue.c
@@ -112,12 +112,12 @@ static int queue_seqdel(struct queue_t *queue, struct qmsg_t *qmsg)
else
qmsg_prev->seqnext = qmsg2->seqnext;
if (QUEUE_DEBUG)
- printf("End queue_seqset: SEQ found\n");
+ printf("End queue_seqdel: SEQ found\n");
return 0;
}
qmsg_prev = qmsg2;
}
- printf("End queue_seqset: SEQ not found\n");
+ printf("End queue_seqdel: SEQ not found\n");
return EOF; /* End of linked list and not found */
}