diff options
author | Simon Warta <[email protected]> | 2015-06-23 09:46:53 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-06-23 09:46:53 +0200 |
commit | 629ae37ebe273332d4b086661b06d8717dfdb937 (patch) | |
tree | adb000640e1de3b4b7ad01bfa050fa38b798acd5 /src/cmd/base64.cpp | |
parent | 43e3c4555c9f2535f18741f3e252b3c93cbbaeca (diff) |
Replace \n by std::endl in /src/cmd
to ensure proper flusing
Diffstat (limited to 'src/cmd/base64.cpp')
-rw-r--r-- | src/cmd/base64.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/base64.cpp b/src/cmd/base64.cpp index b0e39132f..e0798dcee 100644 --- a/src/cmd/base64.cpp +++ b/src/cmd/base64.cpp @@ -21,10 +21,10 @@ int base64(int argc, char* argv[]) if(argc < 2) { std::cout << "Usage: " << argv[0] << " [-w] [-c n] [-e|-d] files...\n" - " -e : Encode input to base64 strings (default) \n" + " -e : Encode input to base64 strings (default)\n" " -d : Decode base64 input\n" " -w : Wrap lines\n" - " -c n: Wrap lines at column n, default 78\n"; + " -c n: Wrap lines at column n, default 78" << std::endl; return 1; } |