diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-23 15:27:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-23 15:27:55 +0000 |
commit | d6b20d71f76a09c104b56fd005ea911bddd09f0f (patch) | |
tree | 7cde13a4a3f2bf577af6cdddc9e14941bcf36fed /src/du.c | |
parent | c8c1251a7bea98686d3d26ce7ff7beab5ef63610 (diff) | |
download | coreutils-d6b20d71f76a09c104b56fd005ea911bddd09f0f.tar.xz |
(time_format): Add `const' attribute.
Diffstat (limited to 'src/du.c')
-rw-r--r-- | src/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ static enum time_type time_type = time_mtime; static char *time_style = NULL; /* Format used to display date / time. Controlled by --time-style */ -static char *time_format = NULL; +static char const *time_format = NULL; /* The units to use when printing sizes. */ static uintmax_t output_block_size; |