Subversion Repositories HelenOS

Rev

Rev 4223 | Rev 4490 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4223 Rev 4244
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
   
305
    /* Print leading spaces. */
308
    /* Print leading spaces. */
306
    size_t strw = wstr_length(str);
309
    size_t strw = wstr_length(str);
307
    if (precision == 0)
310
    if (precision == 0)
308
        precision = strw;
311
        precision = strw;
309
 
312