files.c: use const char *const where appropriate

This commit is contained in:
Michael Vetter
2020-07-01 10:07:42 +02:00
parent 1224aa414e
commit 9b514ad3d6
2 changed files with 4 additions and 4 deletions

View File

@@ -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);

View File

@@ -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