diff options
author | Victor Kareh <[email protected]> | 2019-02-01 07:07:24 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-02-02 00:14:51 +0000 |
commit | 4e42def6ff1c846d54e93260d116dc69eac97d2f (patch) | |
tree | 4712f41d15ab7f0a9305aa6f0505616f6795a2ed /src/caja-bookmark-list.c | |
parent | e99050ad48b89cb8e1a5eaafbb9fdf2ffd418485 (diff) | |
download | caja-4e42def6ff1c846d54e93260d116dc69eac97d2f.tar.bz2 caja-4e42def6ff1c846d54e93260d116dc69eac97d2f.tar.xz |
Fix incompatible pointer types
Diffstat (limited to 'src/caja-bookmark-list.c')
-rw-r--r-- | src/caja-bookmark-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-bookmark-list.c b/src/caja-bookmark-list.c index d39b2b98..a8a2adb2 100644 --- a/src/caja-bookmark-list.c +++ b/src/caja-bookmark-list.c @@ -212,7 +212,7 @@ do_constructor (GType type, if (singleton != NULL) { - return g_object_ref (singleton); + return g_object_ref (G_OBJECT (singleton)); } retval = G_OBJECT_CLASS (caja_bookmark_list_parent_class)->constructor |