From 4b9e56ebf47db8be740f4ff2a4b9fceb9f143055 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Sun, 16 Jan 2011 08:41:04 +0100 Subject: Refactored cardstack and tablestacks to card_stack_t and table_stacks_t, that both now are defined as structs rather than arrays. Inserted lots of assert() calls to functions that take pointers as arguments. --- src/net.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/net.c') 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 #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; } - -- cgit v1.2.3