X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=examples%2Fto-xml.c;h=f48d1ca7b625663064077ca6ebbf6d91f6a484a6;hp=2cf3de8938e5db7b26dbac92213a1c0067496218;hb=627f89351d06e43564b47ea42cabaa522284c2a1;hpb=2f1a50d81671810256dce0852e6b1e0810ac44af diff --git a/examples/to-xml.c b/examples/to-xml.c index 2cf3de8..f48d1ca 100644 --- a/examples/to-xml.c +++ b/examples/to-xml.c @@ -51,7 +51,6 @@ main (int argc, char *argv[]) CALL (guestfs_add_drive (g, argv[i]), -1); CALL (guestfs_launch (g), -1); - CALL (guestfs_wait_ready (g), -1); printf ("\n"); @@ -150,7 +149,7 @@ display_partitions (guestfs_h *g, const char *dev) * That's a limitation of sorts of the Linux kernel. (Actually, * we could do this if we add the kpartx program to libguestfs). */ - if (strncmp (dev, "/dev/sd", 7) != 0 || isdigit (dev[strlen(dev)-1])) { + if (STRNEQLEN (dev, "/dev/sd", 7) || isdigit (dev[strlen(dev)-1])) { printf ("\n", dev); return; }