Index: uspace/app/getterm/getterm.c
===================================================================
--- uspace/app/getterm/getterm.c	(revision f77c1c90c1f223647872d5cefa2d86f63bc846d7)
+++ uspace/app/getterm/getterm.c	(revision a0a9cc249adce31c755defdb6b74a991ebbf55ea)
@@ -66,5 +66,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;
@@ -133,5 +133,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,
@@ -170,5 +170,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,
