Changeset 64a617f in mainline
- Timestamp:
- 2012-04-17T10:21:04Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63920b0
- Parents:
- 96c0b7b
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/src/printf_core.c
r96c0b7b r64a617f 210 210 /* Print leading spaces. */ 211 211 size_t strw = str_length(str); 212 if ( precision == 0)212 if ((precision == 0) || (precision > strw)) 213 213 precision = strw; 214 214 -
kernel/generic/src/printf/printf_core.c
r96c0b7b r64a617f 284 284 /* Print leading spaces. */ 285 285 size_t strw = str_length(str); 286 if ( precision == 0)286 if ((precision == 0) || (precision > strw)) 287 287 precision = strw; 288 288 … … 332 332 /* Print leading spaces. */ 333 333 size_t strw = wstr_length(str); 334 if ( precision == 0)334 if ((precision == 0) || (precision > strw)) 335 335 precision = strw; 336 336 -
kernel/test/print/print1.c
r96c0b7b r64a617f 41 41 42 42 TPRINTF("Testing printf(\"%%8.10s\", \"text\"):\n"); 43 TPRINTF("Expected output: \" text\"\n");43 TPRINTF("Expected output: \" text\"\n"); 44 44 TPRINTF("Real output: \"%8.10s\"\n\n", "text"); 45 45 … … 48 48 TPRINTF("Real output: \"%8.10s\"\n\n", "very long text"); 49 49 50 TPRINTF("Testing printf(\"%%-*.*s\", 7, 7, \"text\"):\n"); 51 TPRINTF("Expected output: \"text \"\n"); 52 TPRINTF("Real output: \"%-*.*s\"\n\n", 7, 7, "text"); 53 50 54 return NULL; 51 55 } -
uspace/lib/c/generic/io/printf_core.c
r96c0b7b r64a617f 283 283 /* Print leading spaces. */ 284 284 size_t strw = str_length(str); 285 if ( precision == 0 || precision > strw)285 if ((precision == 0) || (precision > strw)) 286 286 precision = strw; 287 287 … … 331 331 /* Print leading spaces. */ 332 332 size_t strw = wstr_length(str); 333 if ( precision == 0 || precision > strw)333 if ((precision == 0) || (precision > strw)) 334 334 precision = strw; 335 335
Note:
See TracChangeset
for help on using the changeset viewer.