tool_easysrc.c: fix --libcurl option output file text translation mode

Use fopen() with "w" mode instead of "wt" to fix cygwin builds.
This commit is contained in:
Yang Tse 2012-03-18 05:54:10 +01:00
Родитель ffb67599b3
Коммит fe7613932e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -176,7 +176,7 @@ void dumpeasysrc(struct Configurable *config)
FILE *out;
bool fopened = FALSE;
if(strcmp(o, "-")) {
out = fopen(o, "wt");
out = fopen(o, "w");
fopened = TRUE;
}
else