Browse Source

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

master
kevin 9 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
 void _cmDefaultPrint( void* userPtr, const cmChar_t* text )
11
 void _cmDefaultPrint( void* userPtr, const cmChar_t* text )
12
 { 
12
 { 
13
   if( text != NULL )
13
   if( text != NULL )
14
-    fputs(text,stdin);
14
+    fputs(text,stdout);
15
 }
15
 }
16
 
16
 
17
 void _cmDefaultError( void* userPtr, const cmChar_t* text )
17
 void _cmDefaultError( void* userPtr, const cmChar_t* text )

Loading…
Cancel
Save