Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/clui/nchoice.c

    rb7fd2a0 r68b5dd11  
    4343 *
    4444 */
    45 errno_t nchoice_create(nchoice_t **rchoice)
     45int nchoice_create(nchoice_t **rchoice)
    4646{
    4747        nchoice_t *choice = NULL;
    48         errno_t rc;
     48        int rc;
    4949
    5050        choice = calloc(1, sizeof(nchoice_t));
     
    8282
    8383/** Set numerica choice prompt text */
    84 errno_t nchoice_set_prompt(nchoice_t *choice, const char *prompt)
     84int nchoice_set_prompt(nchoice_t *choice, const char *prompt)
    8585{
    8686        char *pstr;
     
    9696
    9797/** Add option to numerical choice */
    98 errno_t nchoice_add(nchoice_t *choice, const char *opttext, void *arg,
     98int nchoice_add(nchoice_t *choice, const char *opttext, void *arg,
    9999    nchoice_flag_t flags)
    100100{
     
    127127
    128128/** Get numerical choice from user */
    129 errno_t nchoice_get(nchoice_t *choice, void **rarg)
     129int nchoice_get(nchoice_t *choice, void **rarg)
    130130{
    131131        int i;
    132         errno_t rc;
    133         int ret;
     132        int rc;
    134133        char *str;
    135134        unsigned long c;
     
    152151
    153152        if (def_i > 0) {
    154                 ret = asprintf(&istr, "%d", def_i);
    155                 if (ret < 0)
     153                rc = asprintf(&istr, "%d", def_i);
     154                if (rc < 0)
    156155                        return ENOMEM;
    157156        } else {
Note: See TracChangeset for help on using the changeset viewer.