summaryrefslogtreecommitdiff
path: root/src/net.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/net.c')
-rw-r--r--src/net.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net.c b/src/net.c
index ed7e69f..44c9e9a 100644
--- a/src/net.c
+++ b/src/net.c
@@ -5,7 +5,7 @@
#include <assert.h>
#include "net.h"
-void* net_recv(int sock, msg_type_t type)
+void *net_recv(int sock, msg_type_t type)
{
msg_t m;
void *result;
@@ -44,4 +44,3 @@ void* net_recv(int sock, msg_type_t type)
return result;
}
-