style fixes, no code changes

This commit is contained in:
Denis Vlasenko
2007-04-16 22:32:04 +00:00
parent 17e3c34aa7
commit ac678ec2f1
13 changed files with 34 additions and 17 deletions

View File

@ -35,7 +35,8 @@ static const struct option install_long_options[] = {
#if ENABLE_SELINUX
static bool use_default_selinux_context = 1;
static void setdefaultfilecon(const char *path) {
static void setdefaultfilecon(const char *path)
{
struct stat s;
security_context_t scontext = NULL;

View File

@ -65,7 +65,8 @@ static ssize_t tail_read(int fd, char *buf, size_t count)
static const char header_fmt[] = "\n==> %s <==\n";
static unsigned eat_num(const char *p) {
static unsigned eat_num(const char *p)
{
if (*p == '-') p++;
else if (*p == '+') { p++; G.status = EXIT_FAILURE; }
return xatou_sfx(p, tail_suffixes);