summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-04-13 14:35:46 +0000
committerJim Meyering <jim@meyering.net>2002-04-13 14:35:46 +0000
commitd849f682459dd2ccc69bf3e22df0004fc087357b (patch)
tree4d1fdafa9412f54433a2ebfcfe4240271f8fdb7f /src
parent91990a324b71cacc9e56f0f68b66a5d2e94174f0 (diff)
downloadcoreutils-d849f682459dd2ccc69bf3e22df0004fc087357b.tar.xz
add a couple `const'
Diffstat (limited to 'src')
-rw-r--r--src/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stat.c b/src/stat.c
index dba049c60..336693068 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -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];