- Timestamp:
- 05/23/08 03:07:32 (8 months ago)
- Files:
-
- 1 modified
-
NEWT0/branches/DyneTK/src/newt_core/NewtPrint.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/branches/DyneTK/src/newt_core/NewtPrint.c
r113 r123 166 166 return false; 167 167 168 if (! isprint( str[i]))168 if (! isprint((unsigned char)str[i])) 169 169 return false; 170 170 } … … 267 267 NIOFputs(s, f); 268 268 } 269 else if (isprint( c))269 else if (isprint((unsigned char)c)) 270 270 { 271 271 if (unicode)
