From 01062dc9c2892cd6bf271e9b0f1ac3d4a074bb78 Mon Sep 17 00:00:00 2001 From: coderJeff Date: Sun, 5 Nov 2023 09:47:15 -0500 Subject: [PATCH] fbc: suppress warning when bootstrapping --- src/compiler/fbc.bas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compiler/fbc.bas b/src/compiler/fbc.bas index 2c496ab31..089907a48 100644 --- a/src/compiler/fbc.bas +++ b/src/compiler/fbc.bas @@ -1264,7 +1264,8 @@ private function hLinkFiles( ) as integer exit function end if - put #f, 533, clng( fbGetOption( FB_COMPOPT_STACKSIZE ) ) + dim value as long = clng( fbGetOption( FB_COMPOPT_STACKSIZE ) ) + put #f, 533, value close #f