summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2015-07-07 19:16:52 +0200
committerGDR! <gdr@gdr.name>2015-07-07 19:16:52 +0200
commit6b1f29cd404077f0eb76a0511e55d96d42370333 (patch)
tree490933f079256652f34dbf9ba9070506e93a6ad7 /client.c
parentf4fd03d430339ae7310c43ea31f3bb3674b6074e (diff)
CID 122509 (#1 of 1): Missing return statement (MISSING_RETURN)2.
missing_return: Arriving at the end of a function without returning a value.
Diffstat (limited to 'client.c')
-rw-r--r--client.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/client.c b/client.c
index cf26a90..9b91d6f 100644
--- a/client.c
+++ b/client.c
@@ -34,6 +34,7 @@ int handle_pong_frame(protocol_frame *rcvd_frame)
34// state = CLIENT_STATE_PONG_RECEIVED; 34// state = CLIENT_STATE_PONG_RECEIVED;
35 state = CLIENT_STATE_SEND_PING; 35 state = CLIENT_STATE_SEND_PING;
36 } 36 }
37 return 0;
37} 38}
38 39
39int local_bind() 40int local_bind()