Docs: Change exit(1) -> exit(EXIT_FAILURE)
authorRichard Jones <rjones@redhat.com>
Fri, 12 Mar 2010 16:23:14 +0000 (16:23 +0000)
committerRichard Jones <rjones@redhat.com>
Fri, 12 Mar 2010 16:23:14 +0000 (16:23 +0000)
src/guestfs.pod

index 2e608c6..d005257 100644 (file)
@@ -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);