tests: add ---presume-input-tty option, solely for testing
[debian/gzip] / amiga / tailor.c
index 50847749e53aadb72ebb5d0110ad0c1ba6e89ce4..9207999ade5ea653292b570cf2620288c5285a3b 100644 (file)
@@ -116,7 +116,7 @@ void _expand_args (oargc, oargv)
               {
                 expand_next_file (NULL);
                 fprintf (stderr,"Too many files.\n");
-                exit (20);
+                exit (EXIT_FAILURE);
               }
             else
               {
@@ -134,7 +134,7 @@ void _expand_args (oargc, oargv)
         if (argc >= MAXARGS)
           {
             fprintf (stderr,"Too many files.\n");
-            exit (20);
+            exit (EXIT_FAILURE);
           }
         else
           {
@@ -146,7 +146,7 @@ void _expand_args (oargc, oargv)
   *oargv = argv;
   if (no_match_at_all && contains_wildcards) {
     fprintf (stderr,"No match.\n");
-    exit (20);
+    exit (EXIT_FAILURE);
   }
 }