summaryrefslogtreecommitdiff
path: root/lib/thread.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-06-04 19:12:18 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-06-04 20:45:43 -0400
commit69f30024c1af1b0d0fc11ba7ab1e28024953363b (patch)
tree58b3ab53a1a23c3a8947d9aab7e25539164cab95 /lib/thread.c
parent6c4f4e6e6a00d412f2c683f0a4232389ee7235f8 (diff)
lib, bgpd: Fixup some more compile errors due to warnings
Original cherry-pick done on a fedora box with a completely different compiler. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/thread.c')
-rw-r--r--lib/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thread.c b/lib/thread.c
index 21fb2b9563..2b1ca13dee 100644
--- a/lib/thread.c
+++ b/lib/thread.c
@@ -813,7 +813,7 @@ generic_thread_add(struct thread_master *m, int (*func) (struct thread *),
/* is there enough space for a new fd? */
assert (queuepos < m->handler.pfdsize);
- thread = thread_get (m, type, func, arg, funcname, debugargpass);
+ thread = thread_get (m, type, func, arg, debugargpass);
m->handler.pfds[queuepos].fd = fd;
m->handler.pfds[queuepos].events |= event;
if (queuepos == m->handler.pfdcount)