aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2012-10-09 22:16:33 +0100
committerRon Yorston <rmy@pobox.com>2012-10-09 22:16:33 +0100
commit5420d8b91a54f7087f36c59c5d8249756ed4013c (patch)
tree0c1db680765085807ac068a2f2faf81c44bb7075
parenta85066c273a205beff7096c2360f05bcf4fe9de8 (diff)
downloadbusybox-w32-5420d8b91a54f7087f36c59c5d8249756ed4013c.tar.gz
busybox-w32-5420d8b91a54f7087f36c59c5d8249756ed4013c.tar.bz2
busybox-w32-5420d8b91a54f7087f36c59c5d8249756ed4013c.zip
stat: fix order of option symbols
-rw-r--r--coreutils/stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c
index 5af365a7e..4959de40e 100644
--- a/coreutils/stat.c
+++ b/coreutils/stat.c
@@ -78,9 +78,9 @@
78 78
79#include "libbb.h" 79#include "libbb.h"
80 80
81#define OPT_FILESYS (1 << 0) 81#define OPT_TERSE (1 << 0)
82#define OPT_TERSE (1 << 1) 82#define OPT_DEREFERENCE (1 << 1)
83#define OPT_DEREFERENCE (1 << 2) 83#define OPT_FILESYS (1 << 2)
84#define OPT_SELINUX (1 << 3) 84#define OPT_SELINUX (1 << 3)
85 85
86#if ENABLE_FEATURE_STAT_FORMAT 86#if ENABLE_FEATURE_STAT_FORMAT