ソースを参照

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

master
kevin 9年前
コミット
acf2a85ff8
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      cmRpt.c

+ 1
- 1
cmRpt.c ファイルの表示

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

読み込み中…
キャンセル
保存