diff options
author | Charlie Somerville <charlie@charliesomerville.com> | 2013-12-06 14:00:10 +1100 |
---|---|---|
committer | Matt Stancliff <matt@genges.com> | 2014-04-09 17:02:42 -0400 |
commit | 4ede1bada156038b83aa2c883fc8bc836a120ac4 (patch) | |
tree | dd6f1077cc6995540cd536e994a85e40ab5de589 /adapters/libuv.h | |
parent | 66192a0052ec3f9936099a4d2c5512b4b0d89bf0 (diff) |
Define redisLibuvAttach as static
Closes #206
Diffstat (limited to 'adapters/libuv.h')
-rw-r--r-- | adapters/libuv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adapters/libuv.h b/adapters/libuv.h index f959095..a1967f4 100644 --- a/adapters/libuv.h +++ b/adapters/libuv.h @@ -87,7 +87,7 @@ static void redisLibuvCleanup(void *privdata) { } -int redisLibuvAttach(redisAsyncContext* ac, uv_loop_t* loop) { +static int redisLibuvAttach(redisAsyncContext* ac, uv_loop_t* loop) { redisContext *c = &(ac->c); if (ac->ev.data != NULL) { |