Index: uspace/srv/loader/main.c
===================================================================
--- uspace/srv/loader/main.c	(revision 1569a9b70f7219a7103788305e4baf473da24376)
+++ uspace/srv/loader/main.c	(revision 2ca5a198f7308b0c892b04c0fcda44f5e83eb8f0)
@@ -119,5 +119,5 @@
 {
 	char *buf;
-	int rc = async_data_write_accept((void **) &buf, true, 0, 0, 0, NULL);
+	errno_t rc = async_data_write_accept((void **) &buf, true, 0, 0, 0, NULL);
 	
 	if (rc == EOK) {
@@ -146,5 +146,5 @@
 
 	char* name = malloc(namesize);
-	int rc = async_data_write_finalize(writeid, name, namesize);
+	errno_t rc = async_data_write_finalize(writeid, name, namesize);
 	if (rc != EOK) {
 		async_answer_0(rid, EINVAL);
@@ -173,5 +173,5 @@
 	char *buf;
 	size_t buf_size;
-	int rc = async_data_write_accept((void **) &buf, true, 0, 0, 0, &buf_size);
+	errno_t rc = async_data_write_accept((void **) &buf, true, 0, 0, 0, &buf_size);
 	
 	if (rc == EOK) {
@@ -249,5 +249,5 @@
 
 	char* name = malloc(namesize);
-	int rc = async_data_write_finalize(writeid, name, namesize);
+	errno_t rc = async_data_write_finalize(writeid, name, namesize);
 	if (rc != EOK) {
 		async_answer_0(rid, EINVAL);
@@ -349,5 +349,5 @@
 	
 	while (true) {
-		int retval;
+		errno_t retval;
 		ipc_call_t call;
 		ipc_callid_t callid = async_get_call(&call);
@@ -395,5 +395,5 @@
 	/* Introduce this task to the NS (give it our task ID). */
 	task_id_t id = task_get_id();
-	int rc = ns_intro(id);
+	errno_t rc = ns_intro(id);
 	if (rc != EOK)
 		return rc;
