From b438a79d4c8326b72ac7e91f5b4f93fc7ae1c215 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 28 Jan 2019 10:54:09 +0100 Subject: [PATCH] rtp: fix comment --- lib/nodes/rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nodes/rtp.c b/lib/nodes/rtp.c index 99f6acdb5..dd3c86875 100644 --- a/lib/nodes/rtp.c +++ b/lib/nodes/rtp.c @@ -321,7 +321,7 @@ int rtp_start(struct node *n) int ret; struct rtp *r = (struct rtp *) n->_vd; - /* Initialize Queue */ + /* Initialize queue */ ret = queue_signalled_init(&r->recv_queue, 1024, &memory_heap, 0); if (ret) return ret;