diff options
author | Adam Strzelecki <ono@java.pl> | 2015-06-05 12:44:28 +0200 |
---|---|---|
committer | Oscar Campbell <oscar@campbell.nu> | 2015-06-07 13:14:52 +0200 |
commit | 25cc9befd538ec92938c9030d2e68658514f358c (patch) | |
tree | d823b78700d3fd46d63d6f8b7af1bd6de244a81b | |
parent | 4b0089bf58fb0922da0322745a8e1cd957fe0240 (diff) | |
download | Nim-25cc9befd538ec92938c9030d2e68658514f358c.tar.gz |
Fixup: Reverted TZipFileStream name change
This fixes broken b0469c11e334e96cebe53cbe804b6a877831c85a that incompletely reverted TZipFileStream name change.
-rw-r--r-- | lib/impure/zipfiles.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/zipfiles.nim b/lib/impure/zipfiles.nim index d66d7d7f3..d8903f5c1 100644 --- a/lib/impure/zipfiles.nim +++ b/lib/impure/zipfiles.nim @@ -114,7 +114,7 @@ type atEnd: bool PZipFileStream* = - ref ZipFileStream ## a reader stream of a file within a zip archive + ref TZipFileStream ## a reader stream of a file within a zip archive proc fsClose(s: Stream) = zip_fclose(PZipFileStream(s).f) proc fsAtEnd(s: Stream): bool = PZipFileStream(s).atEnd |