Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/snprintf.c

    r9d58539 ra35b458  
    5050        va_list args;
    5151        va_start(args, fmt);
    52        
     52
    5353        int ret = vsnprintf(str, size, fmt, args);
    54        
     54
    5555        va_end(args);
    56        
     56
    5757        return ret;
    5858}
Note: See TracChangeset for help on using the changeset viewer.