[CONUTILS] Fix macro definition.

This commit is contained in:
Hermès Bélusca-Maïto 2018-01-27 16:00:44 +01:00
parent 1e87e2fa9d
commit e9113338c6
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -117,11 +117,12 @@ do { \
* (not many terminals support UTF16 on the contrary). * (not many terminals support UTF16 on the contrary).
*/ */
#define ConInitStdStreams() \ #define ConInitStdStreams() \
ConInitStdStreamsAndMode(UTF8Text, INVALID_CP); // Cache code page unused ConInitStdStreamsAndMode(UTF8Text, INVALID_CP)
/* Note that here the cache code page is unused */
#else #else
/* Use ANSI by default for file output */ /* Use ANSI by default for file output */
#define ConInitStdStreams() \ #define ConInitStdStreams() \
ConInitStdStreamsAndMode(AnsiText, INVALID_CP); ConInitStdStreamsAndMode(AnsiText, INVALID_CP)
#endif /* defined(_UNICODE) */ #endif /* defined(_UNICODE) */
/* Stream translation modes */ /* Stream translation modes */