summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/iniparser/src/strlib.c2
-rw-r--r--source3/iniparser/src/strlib.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/iniparser/src/strlib.c b/source3/iniparser/src/strlib.c
index 3bfddaaebe..b954a36cf7 100644
--- a/source3/iniparser/src/strlib.c
+++ b/source3/iniparser/src/strlib.c
@@ -51,7 +51,7 @@
*/
/*--------------------------------------------------------------------------*/
-char * strlwc(char * s)
+char * strlwc(const char * s)
{
static char l[ASCIILINESZ+1];
int i ;
diff --git a/source3/iniparser/src/strlib.h b/source3/iniparser/src/strlib.h
index 8d8f15fcf0..39ca26f1df 100644
--- a/source3/iniparser/src/strlib.h
+++ b/source3/iniparser/src/strlib.h
@@ -45,7 +45,7 @@
allocated, it will be modified at each function call (not re-entrant).
*/
/*--------------------------------------------------------------------------*/
-char * strlwc(char * s);
+char * strlwc(const char * s);
/*-------------------------------------------------------------------------*/
/**