summaryrefslogtreecommitdiff
path: root/ucspi-tcp-0.88/str_chr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ucspi-tcp-0.88/str_chr.c')
-rw-r--r--ucspi-tcp-0.88/str_chr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucspi-tcp-0.88/str_chr.c b/ucspi-tcp-0.88/str_chr.c
index 886d6b6..042dfa2 100644
--- a/ucspi-tcp-0.88/str_chr.c
+++ b/ucspi-tcp-0.88/str_chr.c
@@ -1,9 +1,9 @@
#include "str.h"
-unsigned int str_chr(register char *s,int c)
+unsigned int str_chr(register const char *s,int c)
{
register char ch;
- register char *t;
+ register const char *t;
ch = c;
t = s;