]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(time_style): Add `const' attribute.
authorJim Meyering <jim@meyering.net>
Sun, 21 Aug 2005 16:06:06 +0000 (16:06 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 21 Aug 2005 16:06:06 +0000 (16:06 +0000)
(tot_dui): Remove unnecessary (and too-short) initializer list.

src/du.c

index 94410bbee7c166a127d6ff5465465f687fe9f8ef..df5088e303169a6446bd830ac99cd25c29c513b3 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -176,7 +176,7 @@ enum time_type
 static enum time_type time_type = time_mtime;
 
 /* User specified date / time style */
-static char *time_style = NULL;
+static char const *time_style = NULL;
 
 /* Format used to display date / time. Controlled by --time-style */
 static char const *time_format = NULL;
@@ -188,7 +188,7 @@ static uintmax_t output_block_size;
 static struct exclude *exclude;
 
 /* Grand total size of all args, in bytes. Also latest modified date. */
-static struct duinfo tot_dui = { 0, 0 };
+static struct duinfo tot_dui;
 
 #define IS_DIR_TYPE(Type)      \
   ((Type) == FTS_DP            \