2010-01-20 Joel Sherrill <joel.sherrill@oarcorp.com>

* sp43/init.c: Fix warning.
This commit is contained in:
Joel Sherrill
2010-01-20 17:11:01 +00:00
parent 04fee3104e
commit 35dfbd79eb
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2010-01-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp43/init.c: Fix warning.
2009-12-15 Glenn Humphrey <glenn.humphrey@OARcorp.com> 2009-12-15 Glenn Humphrey <glenn.humphrey@OARcorp.com>
* sp69/init.c: Fixed warnings. * sp69/init.c: Fixed warnings.

View File

@@ -86,8 +86,8 @@ void change_name(
else { else {
printf( "(" ); printf( "(" );
for (c=newName ; *c ; ) { for (c=newName ; *c ; ) {
if (isprint(*c)) printf( "%c", *c ); if (isprint((int)*c)) printf( "%c", *c );
else printf( "0x%02x", *c ); else printf( "0x%02x", *c );
c++; c++;
if ( *c ) if ( *c )
printf( "-" ); printf( "-" );