diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-01-09 12:12:02 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-01-09 15:15:04 -0800 |
commit | f4650aadbebc94169817169ccc368c589b64d7d0 (patch) | |
tree | 7a1fdf2a85d647cf0cac754f8d57a97e3a6589da /src/du.c | |
parent | 9c0a3a27f70bbb27e839404571922b0f8f0d48da (diff) | |
download | coreutils-f4650aadbebc94169817169ccc368c589b64d7d0.tar.xz |
maint: standardize on "timestamp" as per POSIX
Diffstat (limited to 'src/du.c')
-rw-r--r-- | src/du.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -81,8 +81,8 @@ struct duinfo /* Number of inodes in directory. */ uintmax_t inodes; - /* Latest time stamp found. If tmax.tv_sec == TYPE_MINIMUM (time_t) - && tmax.tv_nsec < 0, no time stamp has been found. */ + /* Latest timestamp found. If tmax.tv_sec == TYPE_MINIMUM (time_t) + && tmax.tv_nsec < 0, no timestamp has been found. */ struct timespec tmax; }; @@ -255,8 +255,8 @@ static enum time_type const time_types[] = ARGMATCH_VERIFY (time_args, time_types); /* 'full-iso' uses full ISO-style dates and times. 'long-iso' uses longer - ISO-style time stamps, though shorter than 'full-iso'. 'iso' uses shorter - ISO-style time stamps. */ + ISO-style timestamps, though shorter than 'full-iso'. 'iso' uses shorter + ISO-style timestamps. */ enum time_style { full_iso_time_style, /* --time-style=full-iso */ |