Changeset 16453
- Timestamp:
- 02/17/06 07:21:28 (3 years ago)
- Files:
-
- 1 modified
-
haiku/trunk/src/system/kernel/debug/debug.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
haiku/trunk/src/system/kernel/debug/debug.c
r16452 r16453 232 232 /* supposed to fall through */ 233 233 default: 234 buffer[position++] = c; 235 kputchar(c); 234 if (isprint(c)) { 235 buffer[position++] = c; 236 kputchar(c); 237 } 238 break; 236 239 } 240 237 241 if (position >= maxLength - 2) { 238 242 buffer[position++] = '\0';
