From 4c201c00a3650cdacad5fc098ca255416687fb0f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 17 Jul 2018 15:04:17 +0200 Subject: whitespace fixes Signed-off-by: Denys Vlasenko --- libbb/nuke_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/nuke_str.c') 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 */ -- cgit v1.2.3