ash: rename some function parameters to match dash
[oweals/busybox.git] / libbb / nuke_str.c
index 56b808bc7e0ebf0dc66eaa61aafb2efd7e36d9a3..b5385e956929da4cb65f4365bafe54f245b7d8ba 100644 (file)
@@ -6,14 +6,13 @@
  *
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
-
 //kbuild:lib-y += nuke_str.o
 
 #include "libbb.h"
 
 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 */