summaryrefslogtreecommitdiff
path: root/zen/file_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_io.h')
-rw-r--r--zen/file_io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_io.h b/zen/file_io.h
index 261829cd..23296c6c 100644
--- a/zen/file_io.h
+++ b/zen/file_io.h
@@ -55,7 +55,7 @@ public:
FileInput(FileHandle handle, const Zstring& filepath); //takes ownership!
~FileInput();
- //Windows: better use 64kB ?? https://technet.microsoft.com/en-us/library/cc938632.aspx
+ //Windows: better use 64kB ?? https://technet.microsoft.com/en-us/library/cc938632
//Linux: use st_blksize?
size_t getBlockSize() const { return 128 * 1024; }
size_t tryRead(void* buffer, size_t bytesToRead); //throw FileError; may return short, only 0 means EOF! => CONTRACT: bytesToRead > 0!
bgstack15