aboutsummaryrefslogtreecommitdiff
path: root/libbb/nuke_str.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-07-17 15:04:17 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-07-17 15:04:17 +0200
commit4c201c00a3650cdacad5fc098ca255416687fb0f (patch)
treefdebcdd9a9a39eee729c45f17d92d042c2adf3f7 /libbb/nuke_str.c
parent0d2e0de42bab54c31ba37f1c6fd10dcdc7008ccf (diff)
downloadbusybox-4c201c00a3650cdacad5fc098ca255416687fb0f.tar.gz
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/nuke_str.c')
-rw-r--r--libbb/nuke_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/nuke_str.c b/libbb/nuke_str.c
index 240e68004..b5385e956 100644
--- a/libbb/nuke_str.c
+++ b/libbb/nuke_str.c
@@ -12,7 +12,7 @@
void FAST_FUNC nuke_str(char *str)
{
- if (str) {
+ if (str) {
while (*str)
*str++ = 0;
/* or: memset(str, 0, strlen(str)); - not as small as above */