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
parent ffb67599b3
commit fe7613932e
1 changed files with 1 additions and 1 deletions

View File

@ -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