aboutsummaryrefslogtreecommitdiff
path: root/compiler/aslcompile.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2009-11-16 18:28:41 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2009-11-16 18:28:41 +0000
commit1b40f7cf3cd1180573e2d9ec6cd169e887b720e0 (patch)
treea94f496090c5bfd215b19df99d9e0f6ea0f6c293 /compiler/aslcompile.c
parenta19285149615c60009a9c5190c260de14b2293f7 (diff)
downloadsrc-1b40f7cf3cd1180573e2d9ec6cd169e887b720e0.tar.gz
src-1b40f7cf3cd1180573e2d9ec6cd169e887b720e0.zip
Notes
Diffstat (limited to 'compiler/aslcompile.c')
-rw-r--r--compiler/aslcompile.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c
index 07de1fe63c9b..d9836ca908e4 100644
--- a/compiler/aslcompile.c
+++ b/compiler/aslcompile.c
@@ -895,13 +895,6 @@ CmCleanupAndExit (
10) / Gbl_NsLookupCount);
}
- /* Close all open files */
-
- for (i = 2; i < ASL_MAX_FILE_TYPE; i++)
- {
- FlCloseFile (i);
- }
-
/*
* TBD: SourceOutput should be .TMP, then rename if we want to keep it?
*/
@@ -923,6 +916,13 @@ CmCleanupAndExit (
}
UtDisplaySummary (ASL_FILE_STDOUT);
+
+ /* Close all open files */
+
+ for (i = 2; i < ASL_MAX_FILE_TYPE; i++)
+ {
+ FlCloseFile (i);
+ }
}