about summary refs log tree commit diff stats
path: root/adapter/protocol/lcgi.nim
diff options
context:
space:
mode:
Diffstat (limited to 'adapter/protocol/lcgi.nim')
-rw-r--r--adapter/protocol/lcgi.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/adapter/protocol/lcgi.nim b/adapter/protocol/lcgi.nim
index 4f495b91..266989f5 100644
--- a/adapter/protocol/lcgi.nim
+++ b/adapter/protocol/lcgi.nim
@@ -13,7 +13,7 @@ export sandbox
 
 export STDIN_FILENO, STDOUT_FILENO
 
-proc die*(os: PosixStream; name: string; s = "") =
+proc die*(os: PosixStream; name: string; s = "") {.noreturn.} =
   var buf = "Cha-Control: ConnectionError " & name
   if s != "":
     buf &= ' ' & s