From: Richard Jones Date: Fri, 12 Mar 2010 16:23:14 +0000 (+0000) Subject: Docs: Change exit(1) -> exit(EXIT_FAILURE) X-Git-Tag: 1.0.86~2 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=ffa3af3b5dd234012f9f4b9c28d483ff371f0ecc Docs: Change exit(1) -> exit(EXIT_FAILURE) --- diff --git a/src/guestfs.pod b/src/guestfs.pod index 2e608c6..d005257 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -807,7 +807,7 @@ need the compile time check as well): dl = dlopen (NULL, RTLD_LAZY); if (!dl) { fprintf (stderr, "dlopen: %s\n", dlerror ()); - exit (1); + exit (EXIT_FAILURE); } has_function = dlsym (dl, "guestfs_dd") != NULL; dlclose (dl);