]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
add a couple `const'
authorJim Meyering <jim@meyering.net>
Sat, 13 Apr 2002 14:35:46 +0000 (14:35 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 13 Apr 2002 14:35:46 +0000 (14:35 +0000)
src/stat.c

index dba049c60f6617c793bd7a62096f17abcc83f7d4..3366930686e424549ee83a81e068121540ddf77a 100644 (file)
@@ -272,7 +272,7 @@ print_human_fstype (struct statfs const *statfsbuf)
 }
 
 static void
-print_human_access(struct stat const *statbuf)
+print_human_access (struct stat const *statbuf)
 {
   char modebuf[11];
   mode_string (statbuf->st_mode, modebuf);
@@ -281,7 +281,7 @@ print_human_access(struct stat const *statbuf)
 }
 
 static void
-print_human_time(time_t *t)
+print_human_time (time_t const *t)
 {
   char str[40];