From ac9eea4afb88ca0785c1ea4c665b1744afc3009a Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Sat, 9 Mar 2019 15:46:49 -0800 Subject: find: minor whitespace cleanup. --- toys/posix/find.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'toys/posix') diff --git a/toys/posix/find.c b/toys/posix/find.c index fdeb2048..1c35155b 100644 --- a/toys/posix/find.c +++ b/toys/posix/find.c @@ -396,13 +396,11 @@ static int do_find(struct dirtree *new) if (copy != ss[1]) free(copy); } } else if (!strcmp(s, "size")) { - if (check) - test = compare_numsign(new->st.st_size, 512, ss[1]); + if (check) test = compare_numsign(new->st.st_size, 512, ss[1]); } else if (!strcmp(s, "links")) { if (check) test = compare_numsign(new->st.st_nlink, 0, ss[1]); } else if (!strcmp(s, "inum")) { - if (check) - test = compare_numsign(new->st.st_ino, 0, ss[1]); + if (check) test = compare_numsign(new->st.st_ino, 0, ss[1]); } else if (!strcmp(s, "mindepth") || !strcmp(s, "maxdepth")) { if (check) { struct dirtree *dt = new; -- cgit v1.2.3