Ignore:
File:
1 edited

Legend:

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

    rd5c1051 r11d9630  
    478478        va_list args;
    479479        int rc;
    480         int ret;
    481480        char *str;
    482481        char *sp, *ep;
     
    487486
    488487        va_start(args, fmt);
    489         ret = vasprintf(&str, fmt, args);
     488        rc = vasprintf(&str, fmt, args);
    490489        va_end(args);
    491490
    492         if (ret < 0) {
     491        if (rc < 0) {
    493492                table->error = ENOMEM;
    494493                return table->error;
Note: See TracChangeset for help on using the changeset viewer.