From 3cc12817f686064fe18112cf05d8bd541abcd398 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 9 Sep 2011 23:59:43 +0200 Subject: conf: _get_next_param() returns a const pointer No writers. --- src/conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/conf.h') diff --git a/src/conf.h b/src/conf.h index 1c6e464c4..d91d464ce 100644 --- a/src/conf.h +++ b/src/conf.h @@ -133,11 +133,11 @@ config_read_file(const char *file, GError **error_r); /* don't free the returned value set _last_ to NULL to get first entry */ G_GNUC_PURE -struct config_param * +const struct config_param * config_get_next_param(const char *name, const struct config_param *last); G_GNUC_PURE -static inline struct config_param * +static inline const struct config_param * config_get_param(const char *name) { return config_get_next_param(name, NULL); -- cgit v1.2.3