Merge branch 'master' of mz-automation.de:libiec61850

This commit is contained in:
Michael Zillgith 2015-06-16 15:00:22 +02:00
commit ad0b4cbd7a

View file

@ -74,9 +74,9 @@ FileSystem_openFile(char* fileName, bool readWrite)
FileHandle newHandle = NULL;
if (readWrite)
newHandle = (FileHandle) fopen(fullPath, "w");
newHandle = (FileHandle) fopen(fullPath, "wb");
else
newHandle = (FileHandle) fopen(fullPath, "r");
newHandle = (FileHandle) fopen(fullPath, "rb");
return newHandle;
}