Ignore:
File:
1 edited

Legend:

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

    r11d9630 rd5c1051  
    478478        va_list args;
    479479        int rc;
     480        int ret;
    480481        char *str;
    481482        char *sp, *ep;
     
    486487
    487488        va_start(args, fmt);
    488         rc = vasprintf(&str, fmt, args);
     489        ret = vasprintf(&str, fmt, args);
    489490        va_end(args);
    490491
    491         if (rc < 0) {
     492        if (ret < 0) {
    492493                table->error = ENOMEM;
    493494                return table->error;
Note: See TracChangeset for help on using the changeset viewer.