Fix a couple of simple unicode merge and substart related bugs

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6195 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2011-12-05 22:52:54 +00:00
parent 8b457d1aa2
commit 359ad0a055
3 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ typedef std::ofstream tofstream;
typedef std::ifstream tifstream;
// Use the following macros to open text files.
#define FOPENTEXT(file, mode) fopen(file, mode)
#define FOPENTEXT2(file, mode, unicode) (*unicode=FALSE, fopen(file, mode))
#define FOPENTEXT2(file, mode, unicode) (*(unicode)=FALSE, fopen(file, mode))
#endif
#ifndef _UNICODE