Index: uspace/app/pkg/pkg.c
===================================================================
--- uspace/app/pkg/pkg.c	(revision 1569a9b70f7219a7103788305e4baf473da24376)
+++ uspace/app/pkg/pkg.c	(revision e211ea04fccf33d4cb2092f630a29e893e096a02)
@@ -49,5 +49,5 @@
 }
 
-static int cmd_runl(const char *path, ...)
+static errno_t cmd_runl(const char *path, ...)
 {
 	va_list ap;
@@ -65,5 +65,5 @@
 	task_id_t id;
 	task_wait_t wait;
-	int rc = task_spawn(&id, &wait, path, cnt, ap);
+	errno_t rc = task_spawn(&id, &wait, path, cnt, ap);
 	va_end(ap);
 
@@ -100,5 +100,5 @@
 
 
-static int pkg_install(int argc, char *argv[])
+static errno_t pkg_install(int argc, char *argv[])
 {
 	char *pkg_name;
@@ -106,5 +106,5 @@
 	char *fname;
 	char *fnunpack;
-	int rc;
+	errno_t rc;
 	int ret;
 
@@ -181,5 +181,5 @@
 {
 	char *cmd;
-	int rc;
+	errno_t rc;
 
 	if (argc < 2) {
