Repository: qpid-proton Updated Branches: refs/heads/master f86e74f8c -> 5237ea7c6
PROTON-1766: Fix bad function prototype Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/5237ea7c Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/5237ea7c Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/5237ea7c Branch: refs/heads/master Commit: 5237ea7c689ac41dda9398d92b142d99cb572ac6 Parents: f86e74f Author: Andrew Stitcher <[email protected]> Authored: Thu Feb 22 01:50:39 2018 -0500 Committer: Andrew Stitcher <[email protected]> Committed: Thu Feb 22 01:53:35 2018 -0500 ---------------------------------------------------------------------- proton-c/src/proactor/libuv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/5237ea7c/proton-c/src/proactor/libuv.c ---------------------------------------------------------------------- diff --git a/proton-c/src/proactor/libuv.c b/proton-c/src/proactor/libuv.c index 3d6c9a4..5e3c7c2 100644 --- a/proton-c/src/proactor/libuv.c +++ b/proton-c/src/proactor/libuv.c @@ -305,7 +305,7 @@ static void parse_addr(addr_t *addr, const char *str) { static pthread_mutex_t driver_ptr_mutex; static uv_once_t global_init_once = UV_ONCE_INIT; -static void global_init_fn() { /* Call via uv_once(&global_init_once, global_init_fn) */ +static void global_init_fn(void) { /* Call via uv_once(&global_init_once, global_init_fn) */ uv_mutex_init(&driver_ptr_mutex); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
