Displaying 1 result from an estimated 1 matches for "exit_not_found".
Did you mean:
efi_not_found
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
...with these:
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
I fixed hivexget.c manually by defining this and using
the new constant:
enum { EXIT_NOT_FOUND = 2 };
Here are the patches:
>From ea4ed8cfd0c0b2996fe5318aecf2128bf52c5c68 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Fri, 20 Nov 2009 12:09:42 +0100
Subject: [PATCH libguestfs 1/3] maint: use EXIT_SUCCESS and EXIT_FAILURE, not 0 and 1 to exit
Convert al...