gwin32mount.c: Fix syntax error
authorLRN <lrn1986@gmail.com>
Sun, 9 Sep 2012 14:49:06 +0000 (10:49 -0400)
committerColin Walters <walters@verbum.org>
Sun, 9 Sep 2012 14:49:45 +0000 (10:49 -0400)
Signed-off-by: Colin Walters <walters@verbum.org>
https://bugzilla.gnome.org/show_bug.cgi?id=683641

gio/gwin32mount.c

index 3b9f616..b9207dd 100644 (file)
@@ -230,7 +230,7 @@ g_win32_mount_get_icon (GMount *mount)
        }
       else
         {
-          win32_mount->icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, FALSE);
+          win32_mount->icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, FALSE));
        }
     }
 
@@ -247,7 +247,7 @@ g_win32_mount_get_symbolic_icon (GMount *mount)
   /* lazy creation */
   if (!win32_mount->symbolic_icon)
     {
-      win32_mount->symbolic_icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, TRUE);
+      win32_mount->symbolic_icon = g_themed_icon_new_with_default_fallbacks (_win32_drive_type_to_icon (win32_mount->drive_type, TRUE));
     }
 
   return g_object_ref (win32_mount->symbolic_icon);