summaryrefslogtreecommitdiff
path: root/json-glib/json-array.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2009-04-17 15:22:04 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2009-04-17 15:22:04 +0100
commitf2f43d17254317d35ea0cc8206592ecbcb856b68 (patch)
treec3ad9eadb8dc8b840effee22f8637f11ef038828 /json-glib/json-array.c
parentbfcc50d5b199e72ed3e5a7556ac2294442e3ac55 (diff)
downloadjson-glib-f2f43d17254317d35ea0cc8206592ecbcb856b68.tar.gz
Intern the remaining type names
JsonArray and JsonSerializable type names should be interned like the rest of the types.
Diffstat (limited to 'json-glib/json-array.c')
-rw-r--r--json-glib/json-array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/json-glib/json-array.c b/json-glib/json-array.c
index 0b5d32a..13ac3b8 100644
--- a/json-glib/json-array.c
+++ b/json-glib/json-array.c
@@ -53,7 +53,7 @@ json_array_get_type (void)
static GType array_type = 0;
if (G_UNLIKELY (!array_type))
- array_type = g_boxed_type_register_static ("JsonArray",
+ array_type = g_boxed_type_register_static (g_intern_static_string ("JsonArray"),
(GBoxedCopyFunc) json_array_ref,
(GBoxedFreeFunc) json_array_unref);