maint: use EXIT_SUCCESS and EXIT_FAILURE, not 0 and 1 in "usage", too
authorJim Meyering <meyering@redhat.com>
Fri, 20 Nov 2009 11:15:14 +0000 (12:15 +0100)
committerRichard Jones <rjones@redhat.com>
Fri, 20 Nov 2009 12:14:32 +0000 (12:14 +0000)
commit4d45c45f0928c7791429d351dc69b75167888f7d
treed023027c9596cd7089e66a08fe9d58a068e5f148
parentc372c7c23a298a940b8a0868396ef2ae0d824e4d
maint: use EXIT_SUCCESS and EXIT_FAILURE, not 0 and 1 in "usage", too

Convert by running these commands:
perl -pi -e 's/\b(usage ?)\(1\)/$1(EXIT_FAILURE)/' \
  fish/fish.c fuse/guestmount.c
perl -pi -e 's/\b(usage ?)\(0\)/$1(EXIT_SUCCESS)/' \
  fish/fish.c fuse/guestmount.c
* fish/fish.c (main): Replace 0/1 with EXIT_SUCCESS/EXIT_FAILURE.
* fuse/guestmount.c (main): Likewise.
fish/fish.c
fuse/guestmount.c