From 6fbdc721d972d8c1f823acd5473a3dce8836d5fa Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 5 Feb 2008 10:17:33 +0000 Subject: fix -Wconst warnings [ew: cleaned up the dirty union hack a bit] Signed-off-by: Eric Wong git-svn-id: https://svn.musicpd.org/mpd/trunk@7180 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/conf.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/conf.h') diff --git a/src/conf.h b/src/conf.h index 01337d349..79b6514c6 100644 --- a/src/conf.h +++ b/src/conf.h @@ -83,22 +83,22 @@ typedef struct _ConfigParam { void initConf(void); void finishConf(void); -void readConf(char *file); +void readConf(const char *file); /* don't free the returned value set _last_ to NULL to get first entry */ -ConfigParam *getNextConfigParam(char *name, ConfigParam * last); +ConfigParam *getNextConfigParam(const char *name, ConfigParam * last); #define getConfigParam(name) getNextConfigParam(name, NULL) -char *getConfigParamValue(char *name); +char *getConfigParamValue(const char *name); -BlockParam *getBlockParam(ConfigParam * param, char *name); +BlockParam *getBlockParam(ConfigParam * param, const char *name); -ConfigParam *parseConfigFilePath(char *name, int force); +ConfigParam *parseConfigFilePath(const char *name, int force); -int getBoolConfigParam(char *name, int force); +int getBoolConfigParam(const char *name, int force); -int getBoolBlockParam(ConfigParam *param, char *name, int force); +int getBoolBlockParam(ConfigParam *param, const char *name, int force); #endif -- cgit v1.2.3