From 28e3bf897875901be410bae9bb427d1ac8dc5b37 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 29 Jul 2014 16:51:52 +0200 Subject: [PATCH] Make meshlink_main_loop static, it's not part of the API. --- src/meshlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5