X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=2013-kvm-forum%2F1000-overview.html;h=01276d7d5922a70a08db52fff7dac9ae87e178ca;hb=81907fec7271bafe1f748c97773a776de50ee7ad;hp=3204ae4d5fd112663df56887d515a6d3b4ce5760;hpb=0f9f01302256ad0b1bca1ab000211c3cc795dab9;p=libguestfs-talks.git diff --git a/2013-kvm-forum/1000-overview.html b/2013-kvm-forum/1000-overview.html index 3204ae4..01276d7 100644 --- a/2013-kvm-forum/1000-overview.html +++ b/2013-kvm-forum/1000-overview.html @@ -18,10 +18,9 @@ span.comment { color: green; font-weight: bold; }
 #include <guestfs.h>
-
+                    /* link with -lguestfs */
 main () {
-  guestfs_h *g =
-      guestfs_create ();
+  guestfs_h *g = guestfs_create ();
   guestfs_add_drive_ro (g,
           "fedora-19.img");
   guestfs_launch (g);
@@ -32,6 +31,4 @@ span.comment { color: green; font-weight: bold; }
           "/dev/stdout");
   guestfs_close (g);
 }
-
-/* link with -lguestfs */