diff options
-rw-r--r-- | props.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,11 +48,11 @@ in this Software without prior written authorization from The Open Group. #include "fstobdf.h" static char * -AddQuotes(unsigned char *string, unsigned int length) +AddQuotes(const unsigned char *string, unsigned int length) { static unsigned char new[256] = "\""; unsigned char *cp; - unsigned char *end; + const unsigned char *end; end = string + length; for (cp = &new[1]; string < end; cp++, string++) { |