summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorrumpf_a@web.de <>2009-12-20 12:43:28 +0100
committerrumpf_a@web.de <>2009-12-20 12:43:28 +0100
commitf56816def07cf88f7ed3905eeba02f19fc0a4b9c (patch)
treeb057be62c7a4abbff0d0ff6a19251b87ce383001 /lib/impure
parent8ce705f6860169b6b0c6db94db38ba25f4f1965f (diff)
downloadNim-f56816def07cf88f7ed3905eeba02f19fc0a4b9c.tar.gz
got rid of platdef.c; compiler now always does linking step
Diffstat (limited to 'lib/impure')
-rwxr-xr-xlib/impure/zipfiles.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/zipfiles.nim b/lib/impure/zipfiles.nim
index 07fe41a04..09bf8f7cc 100755
--- a/lib/impure/zipfiles.nim
+++ b/lib/impure/zipfiles.nim
@@ -21,7 +21,7 @@ type
 proc zipError(z: var TZipArchive) = 
   var e: ref EIO
   new(e)
-  e.msg = zip_strerror(z.w)
+  e.msg = $zip_strerror(z.w)
   raise e
   
 proc open*(z: var TZipArchive, filename: string, mode: TFileMode = fmRead): bool =