Subversion Repositories HelenOS

Rev

Rev 4490 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4490 Rev 4556
Line 300... Line 300...
300
    uint32_t flags, printf_spec_t *ps)
300
    uint32_t flags, printf_spec_t *ps)
301
{
301
{
302
    if (str == NULL)
302
    if (str == NULL)
303
        return printf_putstr(nullstr, ps);
303
        return printf_putstr(nullstr, ps);
304
   
304
   
305
    if (*str == U_BOM)
-
 
306
        str++;
-
 
307
   
-
 
308
    /* Print leading spaces. */
305
    /* Print leading spaces. */
309
    size_t strw = wstr_length(str);
306
    size_t strw = wstr_length(str);
310
    if (precision == 0)
307
    if (precision == 0)
311
        precision = strw;
308
        precision = strw;
312
   
309