mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 15:14:08 +00:00
Fix deprecated warning for non-prototype function declaration in websocket.c
This commit is contained in:
parent
2529ae7105
commit
a56781df24
2 changed files with 2 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,3 +15,4 @@ scratch
|
||||||
.vs/
|
.vs/
|
||||||
**/*.perflog
|
**/*.perflog
|
||||||
wrk/*.png
|
wrk/*.png
|
||||||
|
.zig-cache/
|
|
@ -96,7 +96,7 @@ void free_ws_buffer(ws_s *owner, struct buffer_s buff) {
|
||||||
Create/Destroy the websocket object (prototypes)
|
Create/Destroy the websocket object (prototypes)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static ws_s *new_websocket();
|
static ws_s *new_websocket(intptr_t uuid);
|
||||||
static void destroy_ws(ws_s *ws);
|
static void destroy_ws(ws_s *ws);
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
Loading…
Add table
Reference in a new issue