[R-gregmisc-users] SF.net SVN: r-gregmisc: [1158] trunk/SASxport/src/reverse.c
Brought to you by:
warnes
From: <wa...@us...> - 2007-08-22 01:19:50
|
Revision: 1158 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1158&view=rev Author: warnes Date: 2007-08-21 18:19:46 -0700 (Tue, 21 Aug 2007) Log Message: ----------- sprintf() was being used where printf() was intended. Modified Paths: -------------- trunk/SASxport/src/reverse.c Modified: trunk/SASxport/src/reverse.c =================================================================== --- trunk/SASxport/src/reverse.c 2007-08-21 18:16:47 UTC (rev 1157) +++ trunk/SASxport/src/reverse.c 2007-08-22 01:19:46 UTC (rev 1158) @@ -18,7 +18,7 @@ if( (short) *endianTest != 1 ) { /* The native byte order is big endian, so do nothing */ - sprintf("Big Endian Machine!\n"); + printf("Big Endian Machine!\n"); return; } #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |