diff options
author | Sverker Eriksson <[email protected]> | 2012-10-23 17:56:16 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-10-23 17:56:16 +0200 |
commit | 49b7b5d5158f89fb4bee068719d000d6c753fdcd (patch) | |
tree | 6677ca88f4f62d2a9bf4ca41f1288680db1a07d8 /erts/etc/common | |
parent | 5f3a7727464522da88d07a3012aa87b8703e3f3a (diff) | |
parent | 9548270009eb2fbe06840e1cf2ed428650d9d04a (diff) | |
download | otp-49b7b5d5158f89fb4bee068719d000d6c753fdcd.tar.gz otp-49b7b5d5158f89fb4bee068719d000d6c753fdcd.tar.bz2 otp-49b7b5d5158f89fb4bee068719d000d6c753fdcd.zip |
Merge branch 'sverk/valgrind-quoting'
* sverk/valgrind-quoting:
Make cerl -valgrind work with quoted spaces in command line
Diffstat (limited to 'erts/etc/common')
-rw-r--r-- | erts/etc/common/erlexec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/erts/etc/common/erlexec.c b/erts/etc/common/erlexec.c index 52add1c1ba..04d3425fe0 100644 --- a/erts/etc/common/erlexec.c +++ b/erts/etc/common/erlexec.c @@ -989,8 +989,7 @@ int main(int argc, char **argv) if (print_args_exit) { for (i = 1; i < EargsCnt; i++) - printf("%s ", Eargsp[i]); - printf("\n"); + printf("%s\n", Eargsp[i]); exit(0); } |