Changes in uspace/app/pkg/pkg.c [b7fd2a0:1569a9b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pkg/pkg.c
rb7fd2a0 r1569a9b 49 49 } 50 50 51 static errno_t cmd_runl(const char *path, ...)51 static int cmd_runl(const char *path, ...) 52 52 { 53 53 va_list ap; … … 65 65 task_id_t id; 66 66 task_wait_t wait; 67 errno_t rc = task_spawn(&id, &wait, path, cnt, ap);67 int rc = task_spawn(&id, &wait, path, cnt, ap); 68 68 va_end(ap); 69 69 … … 100 100 101 101 102 static errno_t pkg_install(int argc, char *argv[])102 static int pkg_install(int argc, char *argv[]) 103 103 { 104 104 char *pkg_name; … … 106 106 char *fname; 107 107 char *fnunpack; 108 errno_t rc;108 int rc; 109 109 int ret; 110 110 … … 181 181 { 182 182 char *cmd; 183 errno_t rc;183 int rc; 184 184 185 185 if (argc < 2) {
Note:
See TracChangeset
for help on using the changeset viewer.