Browse Source

cmRpt.c : Fixed bug in _cmDefaultPrint() where stdin was used with fputs() instead of stdout.

master
kevin 8 years ago
parent
commit
acf2a85ff8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      cmRpt.c

+ 1
- 1
cmRpt.c View File

@@ -11,7 +11,7 @@ cmRpt_t cmRptNull = { NULL, NULL, NULL };
11 11
 void _cmDefaultPrint( void* userPtr, const cmChar_t* text )
12 12
 { 
13 13
   if( text != NULL )
14
-    fputs(text,stdin);
14
+    fputs(text,stdout);
15 15
 }
16 16
 
17 17
 void _cmDefaultError( void* userPtr, const cmChar_t* text )

Loading…
Cancel
Save