[gthumb/gthumb-2-14] removed wrong use of the & operator
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gthumb/gthumb-2-14] removed wrong use of the & operator
- Date: Sun, 29 Apr 2012 10:41:02 +0000 (UTC)
commit 1695034f3ce72fb20570b50b11ce21baac4b00ad
Author: Paolo Bacchilega <paobac src gnome org>
Date: Sat Apr 28 18:03:58 2012 +0200
removed wrong use of the & operator
gthumb/gth-metadata.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gthumb/gth-metadata.c b/gthumb/gth-metadata.c
index 473ec34..480491e 100644
--- a/gthumb/gth-metadata.c
+++ b/gthumb/gth-metadata.c
@@ -103,7 +103,7 @@ gth_metadata_set_property (GObject *object,
_g_strset (&self->priv->raw, g_value_get_string (value));
break;
case GTH_METADATA_STRING_LIST:
- _g_object_unref (&self->priv->list);
+ _g_object_unref (self->priv->list);
self->priv->list = gth_string_list_new (gth_string_list_get_list (GTH_STRING_LIST (g_value_get_object (value))));
self->priv->data_type = (self->priv->list != NULL) ? GTH_METADATA_TYPE_STRING_LIST : GTH_METADATA_TYPE_STRING;
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]