From 1b5814ba53290e513085fd7e19e7545da613ee53 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 2 May 2016 04:24:14 -0400 Subject: naming consistency --- src/config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/config.c') diff --git a/src/config.c b/src/config.c index 7030b78..3e4a6fa 100644 --- a/src/config.c +++ b/src/config.c @@ -326,10 +326,10 @@ static FILE *runes_config_get_config_file() config_dir = strdup(config_dir); } else { - sprintf_dup(&config_dir, "%s/.config", home); + runes_sprintf_dup(&config_dir, "%s/.config", home); } - sprintf_dup(&path, "%s/runes/runes.conf", config_dir); + runes_sprintf_dup(&path, "%s/runes/runes.conf", config_dir); free(config_dir); file = fopen(path, "r"); @@ -339,7 +339,7 @@ static FILE *runes_config_get_config_file() return file; } - sprintf_dup(&path, "%s/.runesrc", home); + runes_sprintf_dup(&path, "%s/.runesrc", home); file = fopen(path, "r"); free(path); -- cgit v1.2.3-54-g00ecf