From 04cbb443da170f390093d7bc40015a8d451648a1 Mon Sep 17 00:00:00 2001 From: "Fish (David B. Trout)" Date: Sun, 25 Jan 2015 16:38:56 -0800 Subject: [PATCH] Fix MSVC build error C4702: unreachable code --- script.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/script.c b/script.c index abbdeb29..0a8f327b 100644 --- a/script.c +++ b/script.c @@ -533,8 +533,8 @@ int shell_flg = FALSE; /* indicate it is has a shell } /* end for(scount) (end of configuration file statement loop) */ #if defined(ENABLE_OBJECT_REXX) || defined(ENABLE_REGINA_REXX) + rexx_done: -#endif #if !defined( ENABLE_CONFIG_INCLUDE ) /* close configuration file */ @@ -545,6 +545,9 @@ rexx_done: sysblk.msglvl = DEFAULT_MLVL; return errorcount; + +#endif // defined(ENABLE_OBJECT_REXX) || defined(ENABLE_REGINA_REXX) + } /* end function process_config */