diff --git a/src/modules/call_out/call_out.c b/src/modules/call_out/call_out.c
index bfda16b6100ff6ca5abaa8e4b1bcbb49da22d864..d97fee7313b90641be6b90d1e2f6ca23370e4956 100644
--- a/src/modules/call_out/call_out.c
+++ b/src/modules/call_out/call_out.c
@@ -6,7 +6,7 @@
 /**/
 #include "global.h"
 #include "config.h"
-RCSID("$Id: call_out.c,v 1.28 1999/06/19 20:26:19 hubbe Exp $");
+RCSID("$Id: call_out.c,v 1.29 1999/07/04 14:53:21 grubba Exp $");
 #include "array.h"
 #include "dynamic_buffer.h"
 #include "object.h"
@@ -55,7 +55,7 @@ struct call_out_s
  (X)->prev_fun=(struct call_out_s **)-1; \
  (X)->caller=(struct object *)-1; \
  (X)->args=(struct array *)-1; \
- (X)->pos=-1;
+ (X)->pos=-1
 #else
 #define MESS_UP_BLOCK(X)
 #endif
@@ -66,8 +66,9 @@ struct call_out_s
   if(X->next_arr) X->next_arr->prev_arr=X->prev_arr; \
   *(X->prev_fun)=X->next_fun; \
   if(X->next_fun) X->next_fun->prev_fun=X->prev_fun; \
-  MESS_UP_BLOCK(X) ;
-BLOCK_ALLOC(call_out_s, 1022 )
+  MESS_UP_BLOCK(X)
+
+BLOCK_ALLOC(call_out_s, 1022)
 
 typedef struct call_out_s call_out;