X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2Fguestfs.pod;h=d005257a9279fb6a58a2e471b435a14f170ae335;hb=b369fa6f91185efd4503aba4565671b8a0380d23;hp=2e608c6ecf7f67f7e44137c8a6ce13aa36661303;hpb=a8c3723e3818b5a7a31520043c6831115ab9d0e0;p=libguestfs.git 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);