Ver código fonte

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

master
kevin 9 anos atrás
pai
commit
acf2a85ff8
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      cmRpt.c

+ 1
- 1
cmRpt.c Ver arquivo

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

Carregando…
Cancelar
Salvar