From 696578e1c147a21107e8c04390c9361eb1bd9d91 Mon Sep 17 00:00:00 2001 From: Regis Caillaud Date: Mon, 4 Nov 2024 11:53:53 +0100 Subject: [PATCH] Update connections.nim --- zmq/connections.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmq/connections.nim b/zmq/connections.nim index 79c9349..f67cbe7 100644 --- a/zmq/connections.nim +++ b/zmq/connections.nim @@ -323,7 +323,7 @@ proc close(c: var ZConnectionImpl, linger: int = 500) = c.context.terminate() proc close*(c: ZConnection, linger: int = 500) = - c[].close() + c[].close(linger) # Send / Receive # Send with ZSocket type