ICU-597 Always open the file as binary

X-SVN-Rev: 3744
This commit is contained in:
George Rhoten 2001-02-23 02:46:36 +00:00
parent e586528bb1
commit 031688c1bf

View File

@ -188,7 +188,7 @@ processFile(const char *filename, const char *cp, const char *inputDir, const ch
/* Open the input file for reading */
if(inputDir == NULL) {
in = T_FileStream_open(filename, "r");
in = T_FileStream_open(filename, "rb");
} else {
char *openFileName = NULL;
int32_t dirlen = uprv_strlen(inputDir);