diff options
author | aystarik <aystarik> | 2005-06-29 15:56:35 +0000 |
---|---|---|
committer | aystarik <aystarik> | 2005-06-29 15:56:35 +0000 |
commit | 4368371e61431ca4d8b62dccb1dcabc1f0a995e8 (patch) | |
tree | e0ce0ce81c3b40cbbf7ce4be7afd1b0c0a0438bb /source/compiler/aslfiles.c | |
parent | 645d21850dc70aa4467ade2ff807eab552d6f09e (diff) | |
download | acpica-4368371e61431ca4d8b62dccb1dcabc1f0a995e8.tar.gz |
Exit with non-zero on error
date 2005.03.09.21.35.00; author rmoore1; state Exp;
Diffstat (limited to 'source/compiler/aslfiles.c')
-rw-r--r-- | source/compiler/aslfiles.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/compiler/aslfiles.c b/source/compiler/aslfiles.c index f06e3fbfa..baa0d19b6 100644 --- a/source/compiler/aslfiles.c +++ b/source/compiler/aslfiles.c @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: aslfiles - file I/O suppoert - * $Revision: 1.46 $ + * $Revision: 1.49 $ * *****************************************************************************/ @@ -10,7 +10,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp. * All rights reserved. * * 2. License @@ -147,7 +147,7 @@ AslAbort (void) AePrintErrorLog (ASL_FILE_STDERR); } - exit (0); + exit (1); } |