Changes in uspace/app/pkg/pkg.c [1569a9b:b7fd2a0] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/pkg/pkg.c

    r1569a9b rb7fd2a0  
    4949}
    5050
    51 static int cmd_runl(const char *path, ...)
     51static errno_t cmd_runl(const char *path, ...)
    5252{
    5353        va_list ap;
     
    6565        task_id_t id;
    6666        task_wait_t wait;
    67         int rc = task_spawn(&id, &wait, path, cnt, ap);
     67        errno_t rc = task_spawn(&id, &wait, path, cnt, ap);
    6868        va_end(ap);
    6969
     
    100100
    101101
    102 static int pkg_install(int argc, char *argv[])
     102static errno_t pkg_install(int argc, char *argv[])
    103103{
    104104        char *pkg_name;
     
    106106        char *fname;
    107107        char *fnunpack;
    108         int rc;
     108        errno_t rc;
    109109        int ret;
    110110
     
    181181{
    182182        char *cmd;
    183         int rc;
     183        errno_t rc;
    184184
    185185        if (argc < 2) {
Note: See TracChangeset for help on using the changeset viewer.