Changeset 5a6cc679 in mainline for uspace/app/pkg/pkg.c


Ignore:
Timestamp:
2018-01-31T02:21:24Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

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

    r132ab5d1 r5a6cc679  
    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.