From acf2a85ff87e52cd0a715034287c2f6e441f7d8f Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 19 Nov 2015 19:03:37 -0500 Subject: [PATCH] cmRpt.c : Fixed bug in _cmDefaultPrint() where stdin was used with fputs() instead of stdout. --- cmRpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmRpt.c b/cmRpt.c index b941353..716c599 100644 --- a/cmRpt.c +++ b/cmRpt.c @@ -11,7 +11,7 @@ cmRpt_t cmRptNull = { NULL, NULL, NULL }; void _cmDefaultPrint( void* userPtr, const cmChar_t* text ) { if( text != NULL ) - fputs(text,stdin); + fputs(text,stdout); } void _cmDefaultError( void* userPtr, const cmChar_t* text )