From: Guus Sliepen Date: Tue, 29 Jul 2014 14:51:52 +0000 (+0200) Subject: Make meshlink_main_loop static, it's not part of the API. X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;ds=sidebyside;h=28e3bf897875901be410bae9bb427d1ac8dc5b37;p=meshlink Make meshlink_main_loop static, it's not part of the API. --- diff --git a/src/meshlink.c b/src/meshlink.c index 6d6b77f9..0f6e5f8c 100644 --- a/src/meshlink.c +++ b/src/meshlink.c @@ -789,7 +789,7 @@ meshlink_handle_t *meshlink_open(const char *confbase, const char *name) { return mesh; } -void *meshlink_main_loop(void *arg) { +static void *meshlink_main_loop(void *arg) { meshlink_handle_t *mesh = arg; try_outgoing_connections(mesh);