Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-20 17:47:51 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-20 17:47:51 +0400
commitb9bbc40f64f305dd09d8f3f31eb5632521f87f0c (patch)
tree97cd807bfb38cc54cb0c5f586867a89a4fab85de /libbb/print_flags.c
parent4a717e0c19098111d7fc41f260e01258556ddfbb (diff)
libbb: fix print_flags() [fix somehow is only in 1.11.1?)
Diffstat (limited to 'libbb/print_flags.c')
-rw-r--r--libbb/print_flags.c2
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;