[Plib-cvs] plib/demos/simon/src simon.cxx,1.6,1.7
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-15 17:45:56
|
Update of /cvsroot/plib/plib/demos/simon/src In directory usw-pr-cvs1:/tmp/cvs-serv23942/plib/demos/simon/src Modified Files: simon.cxx Log Message: Added character constants and string variable addition. Index: simon.cxx =================================================================== RCS file: /cvsroot/plib/plib/demos/simon/src/simon.cxx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- simon.cxx 15 Sep 2002 04:34:39 -0000 1.6 +++ simon.cxx 15 Sep 2002 17:45:52 -0000 1.7 @@ -34,7 +34,7 @@ { case PSL_INT : printf ( "%d ", argv[i].getInt () ) ; break ; case PSL_FLOAT : printf ( "%f ", argv[i].getFloat () ) ; break ; - case PSL_STRING : printf ( "%s ", argv[i].getString () ) ; break ; + case PSL_STRING : printf ( "%s", argv[i].getString () ) ; break ; case PSL_VOID : printf ( "(void) " ) ; break ; } } |