Cleanup: mark utils_get_home_dir as returning a const string
[lttng-tools.git] / src / common / config / session-config.c
index 8e5410c3f3b7971016e5f6e130f319703c8e997a..40019514bdb27021d63fb1ad563c2e3abe43c7e8 100644 (file)
@@ -250,7 +250,7 @@ int config_get_section_entries(const char *override_path, const char *section,
                config_entry_handler_cb handler, void *user_data)
 {
        int ret = 0;
-       char *path;
+       const char *path;
        FILE *config_file = NULL;
        struct handler_filter_args filter = { section, handler, user_data };
 
@@ -3532,7 +3532,7 @@ int config_load_session(const char *path, const char *session_name,
        }
 
        if (!path) {
-               char *home_path;
+               const char *home_path;
                const char *sys_path;
 
                /* Try home path */
This page took 0.022936 seconds and 4 git commands to generate.