diff options
Diffstat (limited to 'source/compiler/aslutils.c')
-rw-r--r-- | source/compiler/aslutils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c index 8174eeb..6537c2e 100644 --- a/source/compiler/aslutils.c +++ b/source/compiler/aslutils.c @@ -353,8 +353,6 @@ DbgPrint ( va_list Args; - va_start (Args, Fmt); - if (!Gbl_DebugFlag) { return; @@ -366,6 +364,7 @@ DbgPrint ( return; } + va_start (Args, Fmt); (void) vfprintf (stderr, Fmt, Args); va_end (Args); return; |