From 8e266937f584a70bd6da672c77f9e0e5a9680b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Mal=C3=A1k?= Date: Fri, 8 Nov 2024 12:21:06 +0100 Subject: [PATCH] cc: correct typo --- bld/cc/c/cstmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bld/cc/c/cstmt.c b/bld/cc/c/cstmt.c index 374b169c9e..f31e50f9c6 100644 --- a/bld/cc/c/cstmt.c +++ b/bld/cc/c/cstmt.c @@ -703,7 +703,7 @@ static void ForStmt( void ) NextToken(); MustRecog( T_LEFT_PAREN ); - if( CompVars.cstd > STD_C99 ) { + if( CompVars.cstd > STD_C89 ) { PushBlock(); // 'for' opens new scope } if( CurToken != T_SEMI_COLON ) {