X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fhello.c;h=8b36ed44f41b64842e02876c8389e95eb5f605c2;hp=a8649f371b353e0baf4927f7c75dfcec62c5d133;hb=00425c073e5c0743ef425cd12108a85ac36b15f4;hpb=3572996364d9d24406241dee5155048440053ecf diff --git a/examples/hello.c b/examples/hello.c index a8649f3..8b36ed4 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -4,7 +4,9 @@ * hello guest.img /dev/VolGroup00/LogVol00 */ -#include +#if HAVE_CONFIG_H +# include +#endif #include #include #include @@ -25,7 +27,6 @@ main (int argc, char *argv[]) if (guestfs_add_drive (g, argv[1]) == -1) exit (1); if (guestfs_launch (g) == -1) exit (1); - if (guestfs_wait_ready (g) == -1) exit (1); if (guestfs_mount (g, argv[2], "/") == -1) exit (1);