Ignore:
File:
1 edited

Legend:

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

    r05b59393 rb7fd2a0  
    8181 * and @c cv_max gives the maximum value.
    8282 */
    83 int cap_to_blocks(cap_spec_t *cap, cap_vsel_t cvsel, size_t block_size,
     83errno_t cap_to_blocks(cap_spec_t *cap, cap_vsel_t cvsel, size_t block_size,
    8484    uint64_t *rblocks)
    8585{
     
    9090        uint64_t blocks;
    9191        uint64_t rem;
    92         int rc;
     92        errno_t rc;
    9393
    9494        exp = cap->cunit * 3 - cap->dp;
     
    144144        unsigned sdig;
    145145        unsigned rdig;
    146         int rc;
     146        errno_t rc;
    147147
    148148        /* Change units so that we have at most @c scap_max_idig integer digits */
     
    175175}
    176176
    177 int cap_format(cap_spec_t *cap, char **rstr)
    178 {
    179         int rc;
     177errno_t cap_format(cap_spec_t *cap, char **rstr)
     178{
     179        errno_t rc;
     180        int ret;
    180181        const char *sunit;
    181182        uint64_t ipart;
     
    196197        sunit = cu_str[cap->cunit];
    197198        if (cap->dp > 0) {
    198                 rc = asprintf(rstr, "%" PRIu64 ".%0*" PRIu64 " %s", ipart,
     199                ret = asprintf(rstr, "%" PRIu64 ".%0*" PRIu64 " %s", ipart,
    199200                    (int)cap->dp, fpart, sunit);
    200201        } else {
    201                 rc = asprintf(rstr, "%" PRIu64 " %s", ipart, sunit);
    202         }
    203         if (rc < 0)
     202                ret = asprintf(rstr, "%" PRIu64 " %s", ipart, sunit);
     203        }
     204        if (ret < 0)
    204205                return ENOMEM;
    205206
     
    207208}
    208209
    209 static int cap_digit_val(char c, int *val)
     210static errno_t cap_digit_val(char c, int *val)
    210211{
    211212        switch (c) {
     
    227228}
    228229
    229 int cap_parse(const char *str, cap_spec_t *cap)
     230errno_t cap_parse(const char *str, cap_spec_t *cap)
    230231{
    231232        const char *eptr;
Note: See TracChangeset for help on using the changeset viewer.