diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2015-08-08 15:54:40 -0700 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2016-01-23 18:14:45 +0100 |
commit | f676ce661cc319c0a984b93e4879aa717fb6240b (patch) | |
tree | 0632872922cea28f08185f8e2df63e2c871177eb | |
parent | 907cc11c576a21ea6df5f5ad0a2b1dc3b55dd553 (diff) | |
download | glibc-f676ce661cc319c0a984b93e4879aa717fb6240b.tar.gz glibc-f676ce661cc319c0a984b93e4879aa717fb6240b.tar.xz glibc-f676ce661cc319c0a984b93e4879aa717fb6240b.zip |
Fix trailing space.
(cherry picked from commit 7565d2a862683a3c26ffb1f32351b8c5ab9f7b31)
-rw-r--r-- | catgets/tst-catgets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catgets/tst-catgets.c b/catgets/tst-catgets.c index 140de722c8..0886938d53 100644 --- a/catgets/tst-catgets.c +++ b/catgets/tst-catgets.c @@ -30,7 +30,7 @@ do_bz17905 (void) rl.rlim_cur = sz; setrlimit (RLIMIT_STACK, &rl); - buf = malloc (sz + 1); + buf = malloc (sz + 1); memset (buf, 'A', sz); buf[sz] = '\0'; setenv ("NLSPATH", buf, 1); |