diff options
Diffstat (limited to 'gtk/src/resources.c')
-rw-r--r-- | gtk/src/resources.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/resources.c b/gtk/src/resources.c index c2255013f..283d8d772 100644 --- a/gtk/src/resources.c +++ b/gtk/src/resources.c @@ -30,13 +30,13 @@ static GValue *resources; void ghb_resource_init() { - resources = ghb_plist_parse(resource_str, sizeof(resource_str)-1); + resources = ghb_plist_parse(resource_str, sizeof(resource_str)-1); } GValue* ghb_resource_get(const gchar *name) { - GValue *result; - result = ghb_dict_lookup(resources, name); - return result; + GValue *result; + result = ghb_dict_lookup(resources, name); + return result; } |