From: Jim Meyering Date: Thu, 1 Apr 1999 04:47:55 +0000 (+0000) Subject: (touch): Qualify a char* with the `const' keyword. X-Git-Tag: FILEUTILS-4_0e~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a3189e6c3524a38b2c952417ff69087e9db5124;p=thirdparty%2Fcoreutils.git (touch): Qualify a char* with the `const' keyword. --- diff --git a/src/touch.c b/src/touch.c index 9140493d9d..3b01ab30ab 100644 --- a/src/touch.c +++ b/src/touch.c @@ -106,7 +106,7 @@ static int const time_masks[] = Return 0 if successful, 1 if an error occurs. */ static int -touch (char *file) +touch (const char *file) { int status; struct stat sbuf;