From 9d2e1e531d4a515d8105aa7cb4182fb19e5518a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sun, 4 Jul 1999 16:53:21 +0200
Subject: [PATCH] Removed some unneeded semicolons.

Rev: src/modules/call_out/call_out.c:1.29
---
 src/modules/call_out/call_out.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/modules/call_out/call_out.c b/src/modules/call_out/call_out.c
index bfda16b610..d97fee7313 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;
 
-- 
GitLab