Index: uspace/app/getvc/getvc.c
===================================================================
--- uspace/app/getvc/getvc.c	(revision 2b88074b388ca2afaa99dfb793b82d8753cc5f24)
+++ uspace/app/getvc/getvc.c	(revision c7dc8adcf6fd4f44525066e8405f51bb9f4817ee)
@@ -71,10 +71,10 @@
 static task_id_t spawn(char *fname)
 {
-	char *argv[2];
+	char *args[2];
 	
-	argv[0] = fname;
-	argv[1] = NULL;
+	args[0] = fname;
+	args[1] = NULL;
 	
-	task_id_t id = task_spawn(fname, argv);
+	task_id_t id = task_spawn(fname, args);
 	
 	if (id == 0)
@@ -113,9 +113,13 @@
 	task_id_t id = spawn(argv[2]);
 	
-	task_exit_t texit;
-	int retval;
-	task_wait(id, &texit, &retval);
+	if (id != 0) {
+		task_exit_t texit;
+		int retval;
+		task_wait(id, &texit, &retval);
+		
+		return 0;
+	}
 	
-	return 0;
+	return -5;
 }
 
