diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-12-13 01:39:27 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-12-13 01:39:27 +0100 |
commit | f1a83abdd8072b0f5672cb0594dc3818bff0e22e (patch) | |
tree | eb61bb2fa84588f46353cd9056870c5faa81d1c4 | |
parent | ff64e459888071436834a1c8d3ef0d9e9db088af (diff) | |
download | json-rpc-shell-f1a83abdd8072b0f5672cb0594dc3818bff0e22e.tar.gz json-rpc-shell-f1a83abdd8072b0f5672cb0594dc3818bff0e22e.tar.xz json-rpc-shell-f1a83abdd8072b0f5672cb0594dc3818bff0e22e.zip |
Fix compile warning
-rw-r--r-- | json-rpc-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json-rpc-shell.c b/json-rpc-shell.c index ce02642..d6c47ff 100644 --- a/json-rpc-shell.c +++ b/json-rpc-shell.c @@ -1271,7 +1271,7 @@ backend_ws_on_frame (void *user_data, const struct ws_parser *parser) } static void -backend_ws_on_connection_timeout (EV_P_ ev_io *handle, int revents) +backend_ws_on_connection_timeout (EV_P_ ev_timer *handle, int revents) { (void) loop; (void) revents; |