diff options
author | Araq <rumpf_a@web.de> | 2014-02-02 00:03:30 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-02-02 00:03:30 +0100 |
commit | 3b5c0b27ce2578eceb97128239112653d592707f (patch) | |
tree | 72eeacfbe4c127d7e553657cd1ad075e8adfb24d /lib/system | |
parent | 4b47bee65407a1ebde5e804cd77fc242c3fa7152 (diff) | |
download | Nim-3b5c0b27ce2578eceb97128239112653d592707f.tar.gz |
case consistency for excpt.nim
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/excpt.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index a3f6669d4..e50ba7b9f 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -23,7 +23,7 @@ else: proc MessageBoxA(hWnd: cint, lpText, lpCaption: cstring, uType: int): int32 {. header: "<windows.h>", nodecl.} - proc writeToStdErr(msg: CString) = + proc writeToStdErr(msg: cstring) = discard MessageBoxA(0, msg, nil, 0) proc showErrorMessage(data: cstring) = |