https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e9113338c6112ffc1db8d…
commit e9113338c6112ffc1db8dc2d40eb3da93872f392
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sat Jan 27 16:00:44 2018 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sat Jan 27 16:00:58 2018 +0100
[CONUTILS] Fix macro definition.
---
sdk/lib/conutils/stream.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sdk/lib/conutils/stream.h b/sdk/lib/conutils/stream.h
index 9b70eb3c80..7b6038705b 100644
--- a/sdk/lib/conutils/stream.h
+++ b/sdk/lib/conutils/stream.h
@@ -117,11 +117,12 @@ do { \
* (not many terminals support UTF16 on the contrary).
*/
#define ConInitStdStreams() \
- ConInitStdStreamsAndMode(UTF8Text, INVALID_CP); // Cache code page unused
+ ConInitStdStreamsAndMode(UTF8Text, INVALID_CP)
+ /* Note that here the cache code page is unused */
#else
/* Use ANSI by default for file output */
#define ConInitStdStreams() \
- ConInitStdStreamsAndMode(AnsiText, INVALID_CP);
+ ConInitStdStreamsAndMode(AnsiText, INVALID_CP)
#endif /* defined(_UNICODE) */
/* Stream translation modes */