From: Jim Meyering Date: Wed, 9 Sep 1998 15:39:13 +0000 (+0000) Subject: (oatoi): declare arg to be const X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6eaa6fd0acd5ac7c5afb2717ee167abbbdff604;p=pspp (oatoi): declare arg to be const --- diff --git a/lib/modechange.c b/lib/modechange.c index 10e65fbfad..a2568e5490 100644 --- a/lib/modechange.c +++ b/lib/modechange.c @@ -59,7 +59,7 @@ char *malloc; octal number S. If S is not an octal number, return -1. */ static int -oatoi (char *s) +oatoi (const char *s) { register int i;