0acf62d
When iasl is invoked with 'iasl -T ALL', and everything works correctly,
0acf62d
it still exits with a non-zero value.  Exit with zero if all is well.
0acf62d
0acf62d
Signed-off-by: Al Stone <ahs3@redhat.com>
0acf62d
0acf62d
diff -Naur acpica-unix2-20190816/source/compiler/asloptions.c acpica-unix2-20190816.fix/source/compiler/asloptions.c
0acf62d
--- acpica-unix2-20190816/source/compiler/asloptions.c	2019-08-16 09:01:30.000000000 -0600
0acf62d
+++ acpica-unix2-20190816.fix/source/compiler/asloptions.c	2019-10-29 15:52:40.987156555 -0600
0acf62d
@@ -111,7 +111,7 @@
0acf62d
         {
0acf62d
             exit (-1);
0acf62d
         }
0acf62d
-        exit (1);
0acf62d
+        exit (0);
0acf62d
     }
0acf62d
 
0acf62d
     /* Next parameter must be the input filename */