mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-18 13:21:58 +02:00
maint: remove now-spurious curly braces
* src/chown-core.c (restricted_chown): Remove FIXME comment and superfluous curly braces.
This commit is contained in:
@@ -256,12 +256,10 @@ restricted_chown (int cwd_fd, char const *file,
|
||||
}
|
||||
}
|
||||
|
||||
{ /* FIXME: remove these curly braces when we assume C99. */
|
||||
int saved_errno = errno;
|
||||
close (fd);
|
||||
errno = saved_errno;
|
||||
return status;
|
||||
}
|
||||
int saved_errno = errno;
|
||||
close (fd);
|
||||
errno = saved_errno;
|
||||
return status;
|
||||
}
|
||||
|
||||
/* Change the owner and/or group of the file specified by FTS and ENT
|
||||
|
||||
Reference in New Issue
Block a user