summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/recent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/recent.c b/ui/recent.c
index d22fec3705..64c6c1ee11 100644
--- a/ui/recent.c
+++ b/ui/recent.c
@@ -211,9 +211,9 @@ window_geom_load(const gchar *name,
/* parse values of particular types */
static void
-parse_recent_boolean(const gchar *value_string, gboolean *valuep)
+parse_recent_boolean(const gchar *val_str, gboolean *valuep)
{
- if (g_ascii_strcasecmp(value_string, "true") == 0) {
+ if (g_ascii_strcasecmp(val_str, "true") == 0) {
*valuep = TRUE;
}
else {