build: fix some new warnings

/opensource/libevent/sample/ws-chat-server.c:253:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
This commit is contained in:
Leo Zhang 2023-05-25 10:37:24 +08:00 committed by Azat Khuzhin
parent 283a371f51
commit 1418e793ad

View File

@ -250,4 +250,6 @@ main(int argc, char **argv)
event_free(sig_int);
event_base_free(base);
libevent_global_shutdown();
return 0;
}