From 9b514ad3d66631e99fb55082f84e931cf0865bc4 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 1 Jul 2020 10:07:42 +0200 Subject: files.c: use const char *const where appropriate --- src/config/files.c | 4 ++-- src/config/files.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/config/files.c b/src/config/files.c index 80a777ae..576303fb 100644 --- a/src/config/files.c +++ b/src/config/files.c @@ -113,7 +113,7 @@ files_get_inputrc_file(void) } char* -files_get_log_file(char *log_file) +files_get_log_file(const char *const log_file) { gchar *xdg_data = _files_get_xdg_data_home(); GString *logfile = g_string_new(xdg_data); @@ -140,7 +140,7 @@ files_get_log_file(char *log_file) } gchar* -files_get_config_path(char *config_base) +files_get_config_path(const char *const config_base) { gchar *xdg_config = _files_get_xdg_config_home(); GString *file_str = g_string_new(xdg_config); diff --git a/src/config/files.h b/src/config/files.h index 7b6b37a5..2a74793f 100644 --- a/src/config/files.h +++ b/src/config/files.h @@ -60,11 +60,11 @@ void files_create_directories(void); -gchar* files_get_config_path(char *config_base); +gchar* files_get_config_path(const char *const config_base); gchar* files_get_data_path(const char *const data_base); gchar* files_get_account_data_path(const char *const specific_dir, const char *const jid); -gchar* files_get_log_file(char *log_file); +gchar* files_get_log_file(const char *const log_file); gchar* files_get_inputrc_file(void); #endif -- cgit 1.4.1-2-gfad0