summaryrefslogtreecommitdiffstats
path: root/libc/string/strncpy.c
diff options
context:
space:
mode:
authorAndré Goddard Rosa <andre.goddard@gmail.com>2010-01-30 22:28:49 -0200
committerAndré Goddard Rosa <andre.goddard@gmail.com>2010-01-30 22:28:49 -0200
commit30a419afc3cdb641e350c7cfde753877675958e0 (patch)
treeb4484c80c91c40584edcba2625c196b36a3bae0c /libc/string/strncpy.c
parent8f92500fa93d174d077af28d8af3e3cb732e0aff (diff)
downloadbionic-30a419afc3cdb641e350c7cfde753877675958e0.zip
bionic-30a419afc3cdb641e350c7cfde753877675958e0.tar.gz
bionic-30a419afc3cdb641e350c7cfde753877675958e0.tar.bz2
improve readability of string: fix indentation and remove trailing spaces
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Diffstat (limited to 'libc/string/strncpy.c')
-rw-r--r--libc/string/strncpy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/strncpy.c b/libc/string/strncpy.c
index b91091b..4426cbe 100644
--- a/libc/string/strncpy.c
+++ b/libc/string/strncpy.c
@@ -54,8 +54,8 @@ strncpy(char *dst, const char *src, size_t n)
/* NUL pad the remaining n-1 bytes */
while (--n != 0)
*d++ = 0;
- break;
- }
+ break;
+ }
} while (--n != 0);
}
return (dst);