From: Jim Meyering Date: Wed, 9 Sep 1998 15:39:13 +0000 (+0000) Subject: (oatoi): declare arg to be const X-Git-Tag: FILEUTILS-3_16x~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea44cc33cacda8583597a000302cd77280835f49;p=thirdparty%2Fcoreutils.git (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;