From: <ny...@us...> - 2007-02-11 17:51:08
|
Revision: 341 http://svn.sourceforge.net/pmplib/?rev=341&view=rev Author: nyaochi Date: 2007-02-11 09:51:07 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Trivial fix: output separators to stdout rather than stderr. Modified Paths: -------------- trunk/pmplib/frontend/easypmp/cui/device.c Modified: trunk/pmplib/frontend/easypmp/cui/device.c =================================================================== --- trunk/pmplib/frontend/easypmp/cui/device.c 2007-02-11 17:45:15 UTC (rev 340) +++ trunk/pmplib/frontend/easypmp/cui/device.c 2007-02-11 17:51:07 UTC (rev 341) @@ -94,7 +94,7 @@ pmplib_create(pmplib, &pmp, ucs2cs_empty, devid); device_show_information(pmp, stdout); - fprintf(stderr, "\n"); + fprintf(stdout, "\n"); pmp->release(pmp); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |