From 259604f63dba5f958b879813d1eaed9a59991d1e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 20:59:57 +0100 Subject: Fix warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/common.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 3eaf697..83b15e8 100644 --- a/src/common.h +++ b/src/common.h @@ -159,7 +159,7 @@ struct options { typedef struct gamma_state GAMMA_STATE; struct gamma_method { - char *name; + const char *name; /* If true, this method will be tried if none is explicitly chosen. */ int autostart; @@ -187,7 +187,7 @@ struct gamma_method { typedef struct location_state LOCATION_STATE; struct location_provider { - char *name; + const char *name; /* Initialize state. Options can be set between init and start. */ int (*init)(LOCATION_STATE **state); @@ -225,6 +225,9 @@ LIST_RAMPS_STOP_VALUE_TYPES(X, ;); int config_ini_init(struct config_ini_state *state, const char *filepath); void config_ini_free(struct config_ini_state *state); +#if defined(__GNUC__) +__attribute__((__pure__)) +#endif struct config_ini_section *config_ini_get_section(struct config_ini_state *state, const char *name); -- cgit v1.2.3-70-g09d2