diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-20 13:47:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-20 13:47:51 +0000 |
commit | b9bbc40f64f305dd09d8f3f31eb5632521f87f0c (patch) | |
tree | 97cd807bfb38cc54cb0c5f586867a89a4fab85de /libbb | |
parent | 4a717e0c19098111d7fc41f260e01258556ddfbb (diff) | |
download | busybox-b9bbc40f64f305dd09d8f3f31eb5632521f87f0c.tar.gz |
libbb: fix print_flags() [fix somehow is only in 1.11.1?)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/print_flags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/print_flags.c b/libbb/print_flags.c index a8c4f9c1f..afa755031 100644 --- a/libbb/print_flags.c +++ b/libbb/print_flags.c @@ -19,8 +19,8 @@ int FAST_FUNC print_flags_separated(const int *masks, const char *labels, int fl labels); need_separator = separator; flags &= ~ *masks; - masks++; } + masks++; labels += strlen(labels) + 1; } return flags; |