From: Jim Meyering Date: Fri, 20 Nov 2009 11:18:06 +0000 (+0100) Subject: maint: use EXIT_* symbol (not constant, 2) to indicate key/path not found X-Git-Tag: 1.1.0~68 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;ds=sidebyside;h=1ad3a751d66a6a32ca0d0206c01cfb3d74ff8902;p=hivex.git maint: use EXIT_* symbol (not constant, 2) to indicate key/path not found * hivex/hivexget.c (EXIT_NOT_FOUND): Define. (main): Use exit (EXIT_NOT_FOUND), not "exit (2)". --- diff --git a/hivex/hivexget.c b/hivex/hivexget.c index 8cc395a..3e89d63 100644 --- a/hivex/hivexget.c +++ b/hivex/hivexget.c @@ -27,6 +27,8 @@ #include "hivex.h" +enum { EXIT_NOT_FOUND = 2 }; + int main (int argc, char *argv[]) { @@ -82,7 +84,7 @@ main (int argc, char *argv[]) /* else node not found */ fprintf (stderr, "hivexget: %s: %s: path element not found\n", path, p); - exit (2); + exit (EXIT_NOT_FOUND); } p = pnext; @@ -103,7 +105,7 @@ main (int argc, char *argv[]) goto error; /* else key not found */ fprintf (stderr, "hivexget: %s: key not found\n", key); - exit (2); + exit (EXIT_NOT_FOUND); } /* Print the value. */