GSettings endian: missed a spot
authorRyan Lortie <desrt@desrt.ca>
Mon, 4 Oct 2010 03:15:27 +0000 (23:15 -0400)
committerRyan Lortie <desrt@desrt.ca>
Mon, 4 Oct 2010 03:15:27 +0000 (23:15 -0400)
Missed an instance of get_value -> get_raw_value search/replace.

gio/gsettingsschema.c

index 9ffa6ed..51567c1 100644 (file)
@@ -299,7 +299,7 @@ g_settings_schema_get_value (GSettingsSchema *schema,
   GVariantIter *iter;
   GVariant *value;
 
-  value = gvdb_table_get_value (schema->priv->table, key);
+  value = gvdb_table_get_raw_value (schema->priv->table, key);
 
   if G_UNLIKELY (value == NULL)
     g_error ("schema does not contain a key named '%s'", key);