From 2aba404fc39a252473b9350fe96e4e1248c0d49e Mon Sep 17 00:00:00 2001 From: Marcus Comstedt <marcus@mc.pp.se> Date: Tue, 23 Mar 1999 03:51:07 +0100 Subject: [PATCH] C standard forbids label without following statement. Rev: src/error.c:1.28 --- src/error.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/error.c b/src/error.c index 13bfd78d0b..90e870b871 100644 --- a/src/error.c +++ b/src/error.c @@ -18,7 +18,7 @@ #include "operators.h" #include "module_support.h" -RCSID("$Id: error.c,v 1.27 1999/03/20 22:24:30 hubbe Exp $"); +RCSID("$Id: error.c,v 1.28 1999/03/23 02:51:07 marcus Exp $"); #undef ATTRIBUTE #define ATTRIBUTE(X) @@ -300,6 +300,7 @@ void f_error_index(INT32 args) case 1: ref_push_array(GENERIC_ERROR_THIS->backtrace); break; default: /* do an index out of range error here! */ + ; } } -- GitLab