X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=examples%2Fhello.c;h=b4d5d8c63f615dbd6a4260a2fb7082328848d00b;hb=dad3fcfefd7c013ecbe8fa04df032fefb619e7d6;hp=a4cc43d579b45c1b15897ce5cad6d4e02459d15a;hpb=ff1f39794b2688f0fd6a0c367164e3d715136837;p=libguestfs.git diff --git a/examples/hello.c b/examples/hello.c index a4cc43d..b4d5d8c 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -4,6 +4,9 @@ * hello guest.img /dev/VolGroup00/LogVol00 */ +#if HAVE_CONFIG_H +# include +#endif #include #include #include @@ -16,19 +19,18 @@ main (int argc, char *argv[]) if (argc != 3 || access (argv[1], F_OK) != 0) { fprintf (stderr, "Usage: hello disk-image partition\n"); - exit (1); + exit (EXIT_FAILURE); } - if (!(g = guestfs_create ())) exit (1); + if (!(g = guestfs_create ())) exit (EXIT_FAILURE); - if (guestfs_add_drive (g, argv[1]) == -1) exit (1); + if (guestfs_add_drive (g, argv[1]) == -1) exit (EXIT_FAILURE); - if (guestfs_launch (g) == -1) exit (1); - if (guestfs_wait_ready (g) == -1) exit (1); + if (guestfs_launch (g) == -1) exit (EXIT_FAILURE); - if (guestfs_mount (g, argv[2], "/") == -1) exit (1); + if (guestfs_mount (g, argv[2], "/") == -1) exit (EXIT_FAILURE); - if (guestfs_touch (g, "/hello") == -1) exit (1); + if (guestfs_touch (g, "/hello") == -1) exit (EXIT_FAILURE); guestfs_sync (g); guestfs_close (g);