NFC: Declare and use variables on the same line in inspect.c
authorMatthew Booth <mbooth@redhat.com>
Wed, 23 Nov 2011 14:00:52 +0000 (14:00 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 24 Nov 2011 21:06:33 +0000 (21:06 +0000)
(cherry picked from commit c8cb3d27b62da20be6b2fa06f1ce6b63a722c32b)

src/inspect.c

index 1b41be5..e49cb1f 100644 (file)
@@ -61,8 +61,7 @@ guestfs__inspect_os (guestfs_h *g)
    * information to the handle.
    */
   /* Look to see if any devices directly contain filesystems (RHBZ#590167). */
-  char **devices;
-  devices = guestfs_list_devices (g);
+  char **devices = guestfs_list_devices (g);
   if (devices == NULL)
     return NULL;
 
@@ -77,8 +76,7 @@ guestfs__inspect_os (guestfs_h *g)
   guestfs___free_string_list (devices);
 
   /* Look at all partitions. */
-  char **partitions;
-  partitions = guestfs_list_partitions (g);
+  char **partitions = guestfs_list_partitions (g);
   if (partitions == NULL) {
     guestfs___free_inspect_info (g);
     return NULL;