commit f1c3fd4e4498e4cc67ef04fdd5a4be533245b5a0
parent fdb9084da94067627941f4f7ee414c447866006a
Author: Michael Forney <mforney@mforney.org>
Date: Tue, 23 Jun 2020 02:11:52 -0700
Remove unnecessary initializers of recursor members
Diffstat:
7 files changed, 7 insertions(+), 14 deletions(-)
diff --git a/chgrp.c b/chgrp.c
@@ -38,8 +38,7 @@ int
main(int argc, char *argv[])
{
struct group *gr;
- struct recursor r = { .fn = chgrp, .hist = NULL, .depth = 0, .maxdepth = 1,
- .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = chgrp, .maxdepth = 1, .follow = 'P' };
ARGBEGIN {
case 'h':
diff --git a/chmod.c b/chmod.c
@@ -32,8 +32,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = chmodr, .hist = NULL, .depth = 0, .maxdepth = 1,
- .follow = 'H', .flags = DIRFIRST };
+ struct recursor r = { .fn = chmodr, .maxdepth = 1, .follow = 'H', .flags = DIRFIRST };
size_t i;
argv0 = *argv, argv0 ? (argc--, argv++) : (void *)0;
diff --git a/chown.c b/chown.c
@@ -45,8 +45,7 @@ main(int argc, char *argv[])
{
struct group *gr;
struct passwd *pw;
- struct recursor r = { .fn = chownpwgr, .hist = NULL, .depth = 0, .maxdepth = 1,
- .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = chownpwgr, .maxdepth = 1, .follow = 'P' };
char *owner, *group;
ARGBEGIN {
diff --git a/du.c b/du.c
@@ -60,8 +60,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = du, .hist = NULL, .depth = 0, .maxdepth = 0,
- .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = du, .follow = 'P' };
off_t n = 0;
int kflag = 0, dflag = 0;
char *bsize;
diff --git a/mv.c b/mv.c
@@ -13,8 +13,7 @@ static int mv_status = 0;
static int
mv(const char *s1, const char *s2, int depth)
{
- struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .maxdepth = 0,
- .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = rm, .follow = 'P' };
if (!rename(s1, s2))
return (mv_status = 0);
diff --git a/rm.c b/rm.c
@@ -13,8 +13,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = rm, .hist = NULL, .depth = 0, .maxdepth = 1,
- .follow = 'P', .flags = 0 };
+ struct recursor r = { .fn = rm, .maxdepth = 1, .follow = 'P' };
ARGBEGIN {
case 'f':
diff --git a/tar.c b/tar.c
@@ -514,8 +514,7 @@ usage(void)
int
main(int argc, char *argv[])
{
- struct recursor r = { .fn = c, .hist = NULL, .depth = 0, .maxdepth = 0,
- .follow = 'P', .flags = DIRFIRST };
+ struct recursor r = { .fn = c, .follow = 'P', .flags = DIRFIRST };
struct stat st;
char *file = NULL, *dir = ".", mode = '\0';
int fd;