Changeset 5a6cc679 in mainline for uspace/app/pkg/pkg.c
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pkg/pkg.c
r132ab5d1 r5a6cc679 49 49 } 50 50 51 static int cmd_runl(const char *path, ...)51 static errno_t 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 int rc = task_spawn(&id, &wait, path, cnt, ap);67 errno_t rc = task_spawn(&id, &wait, path, cnt, ap); 68 68 va_end(ap); 69 69 … … 100 100 101 101 102 static int pkg_install(int argc, char *argv[])102 static errno_t pkg_install(int argc, char *argv[]) 103 103 { 104 104 char *pkg_name; … … 106 106 char *fname; 107 107 char *fnunpack; 108 int rc;108 errno_t rc; 109 109 int ret; 110 110 … … 181 181 { 182 182 char *cmd; 183 int rc;183 errno_t rc; 184 184 185 185 if (argc < 2) {
Note:
See TracChangeset
for help on using the changeset viewer.