summaryrefslogtreecommitdiff
path: root/src/core/wee-eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/wee-eval.c')
-rw-r--r--src/core/wee-eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-eval.c b/src/core/wee-eval.c
index 2613fc501..ab4ed94da 100644
--- a/src/core/wee-eval.c
+++ b/src/core/wee-eval.c
@@ -520,7 +520,7 @@ eval_replace_vars_cb (void *data, const char *text)
/* 10. info */
if (strncmp (text, "info:", 5) == 0)
{
- ptr_value = NULL;
+ value = NULL;
ptr_arguments = strchr (text + 5, ',');
if (ptr_arguments)
{
@@ -531,10 +531,10 @@ eval_replace_vars_cb (void *data, const char *text)
info_name = strdup (text + 5);
if (info_name)
{
- ptr_value = hook_info_get (NULL, info_name, ptr_arguments);
+ value = hook_info_get (NULL, info_name, ptr_arguments);
free (info_name);
}
- return strdup ((ptr_value) ? ptr_value : "");
+ return (value) ? value : strdup ("");
}
/* 11. current date/time */