From 7897eb8d1f077874022e6ba1f69ff3c3d59a83d9 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 20 Nov 2000 11:19:21 +0000 Subject: [PATCH] [project @ 2000-11-20 11:19:21 by simonmar] Don't put a label as the last thing in a statement block (ANSI C fix) --- ghc/rts/GC.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/GC.c b/ghc/rts/GC.c index 49fb687..4fa1d38 100644 --- a/ghc/rts/GC.c +++ b/ghc/rts/GC.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: GC.c,v 1.88 2000/11/13 14:41:13 simonmar Exp $ + * $Id: GC.c,v 1.89 2000/11/20 11:19:21 simonmar Exp $ * * (c) The GHC Team 1998-1999 * @@ -889,7 +889,7 @@ traverse_weak_ptr_list(void) next = t->global_link; *prev = next; continue; - default: + default: ; } /* Threads which have already been determined to be alive are -- 1.7.10.4