diff options
-rw-r--r-- | src/guestfs.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guestfs.pod b/src/guestfs.pod index 2e608c6e..d005257a 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); |