Don't print literal char in debugging output

This commit is contained in:
Keith Winstein
2011-01-13 15:12:25 -05:00
parent 57ecacd409
commit 32db675dd2
+1 -1
View File
@@ -263,7 +263,7 @@ int vt_parser( struct stripstate *state )
assert( act );
if ( act->char_present ) {
printf( "%s(0x%02x=%lc) ", act->name().c_str(), act->ch, act->ch );
printf( "%s(0x%02x) ", act->name().c_str(), act->ch );
} else {
printf( "[%s] ", act->name().c_str() );
}