diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-23 15:16:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-23 15:16:38 +0000 |
commit | c8e4886304ca20bc943cac26716e4ddff176439e (patch) | |
tree | f167f260d02837f25ea5608867c8565828b14fcb /src | |
parent | ae08ebecae4bb8aede53a49b08b50378a1f0fc11 (diff) | |
download | coreutils-c8e4886304ca20bc943cac26716e4ddff176439e.tar.xz |
(show_date): Rename local `time_format' so as not to
shadow the file-scoped global by that name.
Diffstat (limited to 'src')
-rw-r--r-- | src/du.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -399,20 +399,20 @@ hash_init (void) xalloc_die (); } -/* Display the date and time in PDUI according to the format specified +/* Display the date and time in WHEN/NSEC according to the format specified in TIME_FORMAT. If TIME_FORMAT is NULL, use the standard output format. Return zero if successful. */ static int -show_date (const char *time_format, time_t when, int nsec) +show_date (const char *format, time_t when, int nsec) { struct tm *tm; char *out = NULL; size_t out_length = 0; - if (time_format == NULL || *time_format == '\0') + if (format == NULL || *format == '\0') { - time_format = "%Y-%m-%d %H:%M"; + format = "%Y-%m-%d %H:%M"; } tm = localtime (&when); @@ -429,7 +429,7 @@ show_date (const char *time_format, time_t when, int nsec) while (1) { - int done; + bool done; out = x2nrealloc (out, &out_length, sizeof *out); /* Mark the first byte of the buffer so we can detect the case @@ -438,7 +438,7 @@ show_date (const char *time_format, time_t when, int nsec) `LANG=de date +%p' on a system with good language support. */ out[0] = '\1'; - done = (nstrftime (out, out_length, time_format, tm, 0, nsec) + done = (nstrftime (out, out_length, format, tm, 0, nsec) || out[0] == '\0'); if (done) |