summaryrefslogtreecommitdiffstats
path: root/bin/ls/cmp.c
diff options
context:
space:
mode:
authorgrog <grog@FreeBSD.org>2012-11-08 23:45:19 +0000
committergrog <grog@FreeBSD.org>2012-11-08 23:45:19 +0000
commitd5943d9209bea666b189f541ac3a5d3cd02083ff (patch)
treef7685da3d8aebfc5f5dbcbb449d3cc1281e3b0d5 /bin/ls/cmp.c
parent9f61746f5a7c133c4334b42306477cf36abda421 (diff)
downloadFreeBSD-src-d5943d9209bea666b189f541ac3a5d3cd02083ff.zip
FreeBSD-src-d5943d9209bea666b189f541ac3a5d3cd02083ff.tar.gz
Replace spaces with tabs where appropriate.
Reminded by: jh@
Diffstat (limited to 'bin/ls/cmp.c')
-rw-r--r--bin/ls/cmp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/ls/cmp.c b/bin/ls/cmp.c
index 8729666..a2e46ff 100644
--- a/bin/ls/cmp.c
+++ b/bin/ls/cmp.c
@@ -78,9 +78,9 @@ modcmp(const FTSENT *a, const FTSENT *b)
if (b->fts_statp->st_mtim.tv_nsec <
a->fts_statp->st_mtim.tv_nsec)
return (-1);
- if (f_samesort)
+ if (f_samesort)
return (strcoll(b->fts_name, a->fts_name));
- else
+ else
return (strcoll(a->fts_name, b->fts_name));
}
@@ -107,9 +107,9 @@ acccmp(const FTSENT *a, const FTSENT *b)
if (b->fts_statp->st_atim.tv_nsec <
a->fts_statp->st_atim.tv_nsec)
return (-1);
- if (f_samesort)
+ if (f_samesort)
return (strcoll(b->fts_name, a->fts_name));
- else
+ else
return (strcoll(a->fts_name, b->fts_name));
}
@@ -136,9 +136,9 @@ birthcmp(const FTSENT *a, const FTSENT *b)
if (b->fts_statp->st_birthtim.tv_nsec <
a->fts_statp->st_birthtim.tv_nsec)
return (-1);
- if (f_samesort)
+ if (f_samesort)
return (strcoll(b->fts_name, a->fts_name));
- else
+ else
return (strcoll(a->fts_name, b->fts_name));
}
@@ -165,9 +165,9 @@ statcmp(const FTSENT *a, const FTSENT *b)
if (b->fts_statp->st_ctim.tv_nsec <
a->fts_statp->st_ctim.tv_nsec)
return (-1);
- if (f_samesort)
+ if (f_samesort)
return (strcoll(b->fts_name, a->fts_name));
- else
+ else
return (strcoll(a->fts_name, b->fts_name));
}
OpenPOWER on IntegriCloud