diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-09-21 17:10:37 +0200 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-09-21 17:10:37 +0200 |
| commit | ce4ed444960b750732756df75fcfca5ac2f5ebee (patch) | |
| tree | 5ea13cbedac170e4bc65e1a9c06f8b667d6c2e73 /src | |
| parent | b1d62a307da88a2ee80679cfd2d129bcefe301d4 (diff) | |
Add missing newlines to printed messages
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc index dba1ac48..cd0884bd 100644 --- a/src/main.cc +++ b/src/main.cc @@ -191,7 +191,7 @@ int kakoune(memoryview<String> params) { if (parser.has_option(opt)) { - fprintf(stderr, "error: -%s makes not sense with -c", opt); + fprintf(stderr, "error: -%s makes not sense with -c\n", opt); return -1; } } @@ -219,7 +219,7 @@ int kakoune(memoryview<String> params) { if (not parser.has_option("s")) { - fputs("-d needs a session name to be specified with -s", stderr); + fputs("-d needs a session name to be specified with -s\n", stderr); return -1; } if (pid_t child = fork()) |
