summaryrefslogtreecommitdiff
path: root/src/fe-common/core/hilight-text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-common/core/hilight-text.c')
-rw-r--r--src/fe-common/core/hilight-text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/hilight-text.c b/src/fe-common/core/hilight-text.c
index cd71364b..a043d60f 100644
--- a/src/fe-common/core/hilight-text.c
+++ b/src/fe-common/core/hilight-text.c
@@ -491,11 +491,11 @@ static void hilight_print(int index, HILIGHT_REC *rec)
}
if (rec->priority != 0)
- g_string_sprintfa(options, "-priority %d ", rec->priority);
+ g_string_append_printf(options, "-priority %d ", rec->priority);
if (rec->color != NULL)
- g_string_sprintfa(options, "-color %s ", rec->color);
+ g_string_append_printf(options, "-color %s ", rec->color);
if (rec->act_color != NULL)
- g_string_sprintfa(options, "-actcolor %s ", rec->act_color);
+ g_string_append_printf(options, "-actcolor %s ", rec->act_color);
chans = rec->channels == NULL ? NULL :
g_strjoinv(",", rec->channels);