(main): For failing cases, exit with `EXIT_FAILURE'.

This commit is contained in:
Thien-Thi Nguyen 2004-05-10 17:32:13 +00:00
parent e109331ade
commit 80e26b667a
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
* test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
2004-05-08 Jason Rumney <jasonr@gnu.org>
* makefile.w32-in (lisp1, lisp2): Split lisp to avoid long

View file

@ -80,13 +80,13 @@ main (argc, argv)
if (argc != 2)
{
fprintf (stderr, "Usage: %s testfile\n", argv[0]);
exit (2);
exit (EXIT_FAILURE);
}
fd = open (argv[1], O_RDONLY);
if (fd < 0)
{
perror (argv[1]);
exit (2);
exit (EXIT_FAILURE);
}
if (cool_read (fd, buf, sizeof string1) != sizeof string1 ||
strcmp (buf, string1) ||
@ -97,7 +97,7 @@ main (argc, argv)
Most likely this means that many nonprinting characters\n\
have been corrupted in the files of Emacs, and it will not work.\n",
argv[1]);
exit (2);
exit (EXIT_FAILURE);
}
close (fd);
return EXIT_SUCCESS;