From ae06676815e24a27549e0c79a74bc81c77822554 Mon Sep 17 00:00:00 2001 From: Jasmine Hassan Date: Fri, 23 Nov 2012 11:58:30 +0200 Subject: [src] fix some incompatible pointer type warnings including a silly mistake in caja-window where destroy function's return type was accidently ommitted during the addition of gtk version checks. --- src/file-manager/fm-properties-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/file-manager/fm-properties-window.c') diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c index 73b28e2f..29666607 100644 --- a/src/file-manager/fm-properties-window.c +++ b/src/file-manager/fm-properties-window.c @@ -3425,7 +3425,7 @@ get_initial_emblems (GList *files) ret = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL, - (GFunc) g_free); + (GDestroyNotify) g_free); for (l = files; l != NULL; l = l->next) { CajaFile *file; -- cgit v1.2.1