projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c84441f
)
GSettings endian: missed a spot
author
Ryan Lortie
<desrt@desrt.ca>
Mon, 4 Oct 2010 03:15:27 +0000
(23:15 -0400)
committer
Ryan 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
patch
|
blob
|
history
diff --git
a/gio/gsettingsschema.c
b/gio/gsettingsschema.c
index 9ffa6edabd899287b84fecd90e3fe1a415d18834..51567c1a312c73f37f3ab1e3c63038fd22929bbd 100644
(file)
--- a/
gio/gsettingsschema.c
+++ b/
gio/gsettingsschema.c
@@
-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);