add a cast to stop a gcc warning
authorDan Winship <danw@src.gnome.org>
Fri, 26 Sep 2008 16:00:17 +0000 (16:00 +0000)
committerDan Winship <danw@src.gnome.org>
Fri, 26 Sep 2008 16:00:17 +0000 (16:00 +0000)
* gdesktopappinfo.c (get_all_desktop_entries_for_mime_type): add a
cast to stop a gcc warning

* gfile.c (g_file_copy_attributes): add parens to stop a gcc
warning

svn path=/trunk/; revision=7550

gio/ChangeLog
gio/gdesktopappinfo.c
gio/gfile.c

index 565e47f14d8a172e0ff71046311ccec98e3cbed3..29a9558b20b4cfe0cd764e83b1ffdce39d8820fa 100644 (file)
@@ -1,3 +1,11 @@
+2008-09-26  Dan Winship  <danw@gnome.org>
+
+       * gdesktopappinfo.c (get_all_desktop_entries_for_mime_type): add a
+       cast to stop a gcc warning
+
+       * gfile.c (g_file_copy_attributes): add parens to stop a gcc
+       warning
+
 2008-09-25  Dan Winship  <danw@gnome.org>
 
        Bug 553426 - cancellable clarifications
index 0bab123f2c7e5ec941b2833522b3cbfe5222803d..b86e420ad42bbe03420a9b9014f9ffa411a0dcab 100644 (file)
@@ -2475,7 +2475,7 @@ get_all_desktop_entries_for_mime_type (const char *base_mime_type)
       g_strfreev (anc);
     }
   g_ptr_array_add (array, NULL);
-  mime_types = g_ptr_array_free (array, FALSE);
+  mime_types = (char **)g_ptr_array_free (array, FALSE);
 
   G_LOCK (mime_info_cache);
   
index e89701f7354b72df7bae88511644af70180149ab..bb7f6e1b7461ce1b3741bec2f6363f8db058d467 100644 (file)
@@ -2151,7 +2151,7 @@ g_file_copy_attributes (GFile           *source,
 
   as_move = flags & G_FILE_COPY_ALL_METADATA;
   source_nofollow_symlinks = flags & G_FILE_COPY_NOFOLLOW_SYMLINKS;
-  skip_perms = flags & G_FILE_COPY_TARGET_DEFAULT_PERMS != 0;
+  skip_perms = (flags & G_FILE_COPY_TARGET_DEFAULT_PERMS) != 0;
 
   /* Ignore errors here, if the target supports no attributes there is nothing to copy */
   attributes = g_file_query_settable_attributes (destination, cancellable, NULL);