From 0c1ac39ecf300b9edd9711268f9a61d27aab7efb Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 13 Apr 2001 06:16:09 +0000 Subject: Fixed const incorrect code. --- src/PropSet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/PropSet.cxx') 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; -- cgit v1.2.3