1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-17 09:05:50 +02:00

maint: touch: reduce variable scope

* src/touch.c (main): Declare variables where they are used instead of
at the start of the function.
This commit is contained in:
Collin Funk
2026-03-04 23:40:03 -08:00
parent e2e78f9e8e
commit 90d2b511e4

View File

@@ -276,9 +276,7 @@ change the times of the file associated with standard output.\n\
int
main (int argc, char **argv)
{
int c;
bool date_set = false;
bool ok = true;
char const *flex_date = NULL;
initialize_main (&argc, &argv);
@@ -289,6 +287,7 @@ main (int argc, char **argv)
atexit (close_stdout);
int c;
while ((c = getopt_long (argc, argv, "acd:fhmr:t:", longopts, NULL)) != -1)
{
switch (c)
@@ -446,6 +445,7 @@ main (int argc, char **argv)
usage (EXIT_FAILURE);
}
bool ok = true;
for (; optind < argc; ++optind)
ok &= touch (argv[optind]);