Rev 4537 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4537 | Rev 4668 | ||
|---|---|---|---|
| Line 299... | Line 299... | ||
| 299 | uint32_t flags, printf_spec_t *ps) |
299 | uint32_t flags, printf_spec_t *ps) |
| 300 | { |
300 | { |
| 301 | if (str == NULL) |
301 | if (str == NULL) |
| 302 | return printf_putstr(nullstr, ps); |
302 | return printf_putstr(nullstr, ps); |
| 303 | 303 | ||
| 304 | if (*str == U_BOM) |
- | |
| 305 | str++; |
- | |
| 306 | - | ||
| 307 | /* Print leading spaces. */ |
304 | /* Print leading spaces. */ |
| 308 | size_t strw = wstr_length(str); |
305 | size_t strw = wstr_length(str); |
| 309 | if (precision == 0) |
306 | if (precision == 0) |
| 310 | precision = strw; |
307 | precision = strw; |
| 311 | 308 | ||