diff options
-rw-r--r-- | src/bun.js/api/server.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/api/server.zig b/src/bun.js/api/server.zig index d0910015a..11400dde5 100644 --- a/src/bun.js/api/server.zig +++ b/src/bun.js/api/server.zig @@ -2437,7 +2437,7 @@ pub fn NewServer(comptime ssl_enabled_: bool, comptime debug_mode_: bool) type { return; } - pub fn onListen(this: *ThisServer, socket: ?*App.ListenSocket, _: uws.uws_app_listen_config_t) void { + pub fn onListen(this: *ThisServer, socket: ?*App.ListenSocket) void { if (socket == null) { return this.onListenFailed(); } |