Index: uspace/app/getterm/getterm.c
===================================================================
--- uspace/app/getterm/getterm.c	(revision 84a1a546f62a2ba0f913f8f1bfce8d4bc68d7aa4)
+++ uspace/app/getterm/getterm.c	(revision e211ea04fccf33d4cb2092f630a29e893e096a02)
@@ -67,5 +67,5 @@
 	
 	int oldfd;
-	int rc = vfs_lookup_open(path, WALK_REGULAR, mode, &oldfd);
+	errno_t rc = vfs_lookup_open(path, WALK_REGULAR, mode, &oldfd);
 	if (rc != EOK)
 		return;
@@ -134,5 +134,5 @@
 		/* Wait for the terminal service to be ready */
 		service_id_t service_id;
-		int rc = loc_service_get_id(term, &service_id, IPC_FLAG_BLOCKING);
+		errno_t rc = loc_service_get_id(term, &service_id, IPC_FLAG_BLOCKING);
 		if (rc != EOK) {
 			printf("%s: Error waiting on %s (%s)\n", APP_NAME, term,
@@ -171,5 +171,5 @@
 	task_wait_t twait;
 	
-	int rc = task_spawnv(&id, &twait, cmd, (const char * const *) args);
+	errno_t rc = task_spawnv(&id, &twait, cmd, (const char * const *) args);
 	if (rc != EOK) {
 		printf("%s: Error spawning %s (%s)\n", APP_NAME, cmd,
