diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/PropSet.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/PropSet.cxx b/src/PropSet.cxx index 693ead1da..ac88e61c7 100644 --- a/src/PropSet.cxx +++ b/src/PropSet.cxx @@ -129,7 +129,7 @@ void PropSet::Set(const char *keyVal) {  }  void PropSet::SetMultiple(const char *s) { -	char *eol = strchr(s, '\n'); +	const char *eol = strchr(s, '\n');  	while (eol) {  		Set(s);  		s = eol + 1; | 
