comparison OrthancFramework/Sources/Compression/ZipReader.cpp @ 4751:b3957ddd88f1

typos
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 08 Jul 2021 17:31:03 +0200
parents d9473bd5ed43
children 588fa6fb32ca
comparison
equal deleted inserted replaced
4749:1a061bc2d6ca 4751:b3957ddd88f1
36 #endif 36 #endif
37 37
38 38
39 /** 39 /**
40 * I have not been able to correctly define "ssize_t" on all versions 40 * I have not been able to correctly define "ssize_t" on all versions
41 * of Visual Studio. As a consequence, I prefered to switch "ssize_t" 41 * of Visual Studio. As a consequence, I preferred to switch "ssize_t"
42 * to "SSIZE_T", that is properly defined on both MSVC 2008 and 2015. 42 * to "SSIZE_T", that is properly defined on both MSVC 2008 and 2015.
43 * I define the macro "SSIZE_T" as an alias to "ssize_t" on 43 * I define the macro "SSIZE_T" as an alias to "ssize_t" on
44 * POSIX-compliant platforms that wouldn't have "SSIZE_T" defined. 44 * POSIX-compliant platforms that wouldn't have "SSIZE_T" defined.
45 **/ 45 **/
46 #if defined(_MSC_VER) 46 #if defined(_MSC_VER)