code-style: whitespace fixes

This commit is contained in:
Hiltjo Posthuma
2015-09-06 22:33:41 +02:00
committed by sin
parent 51009a9600
commit 53be158979
5 changed files with 22 additions and 15 deletions

3
ls.c
View File

@@ -28,7 +28,7 @@ struct entry {
static struct {
dev_t dev;
ino_t ino;
} tree[PATH_MAX] = { { 0, 0 } };
} tree[PATH_MAX];
static int Aflag = 0;
static int aflag = 0;
@@ -307,6 +307,7 @@ visit(const struct entry *ent)
tree[i].ino = ino;
tree[i].dev = dev;
return i;
}