Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/cap.c

    rd5c1051 r05b59393  
    178178{
    179179        int rc;
    180         int ret;
    181180        const char *sunit;
    182181        uint64_t ipart;
     
    197196        sunit = cu_str[cap->cunit];
    198197        if (cap->dp > 0) {
    199                 ret = asprintf(rstr, "%" PRIu64 ".%0*" PRIu64 " %s", ipart,
     198                rc = asprintf(rstr, "%" PRIu64 ".%0*" PRIu64 " %s", ipart,
    200199                    (int)cap->dp, fpart, sunit);
    201200        } else {
    202                 ret = asprintf(rstr, "%" PRIu64 " %s", ipart, sunit);
    203         }
    204         if (ret < 0)
     201                rc = asprintf(rstr, "%" PRIu64 " %s", ipart, sunit);
     202        }
     203        if (rc < 0)
    205204                return ENOMEM;
    206205
Note: See TracChangeset for help on using the changeset viewer.