From 45655760219fb5032cd266c792955c095f8cd2c8 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 7 Nov 1995 10:37:59 +0000 Subject: [PATCH] Fixed bug with labels --- lang/pc/comp/label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/pc/comp/label.c b/lang/pc/comp/label.c index ee8d11d7d..0f0fe8a7a 100644 --- a/lang/pc/comp/label.c +++ b/lang/pc/comp/label.c @@ -50,7 +50,7 @@ chk_labels(Slevel) struct lab *plab = df->lab_next; while( plab ) { - if( plab->lb_level > 1 ) + if( plab->lb_level == Slevel ) plab->lb_level--; plab = plab->lb_next; } -- 2.34.1