diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:18 +0000 |
commit | 0ce94d9ef42ecfb7e8640046e9c1986c348e6154 (patch) | |
tree | 62348219cfd14ce20da7c296e2ad8160e2703332 /configure | |
parent | b38de9a1bea8f2d06d80767ab6e357d60fe7dfb4 (diff) | |
download | ptycon-0ce94d9ef42ecfb7e8640046e9c1986c348e6154.tar.bz2 ptycon-0ce94d9ef42ecfb7e8640046e9c1986c348e6154.tar.xz |
build system: configure: error_msg(), warning_msg(): add terminating newline.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,12 +38,12 @@ usage() error_msg() { - printf '%s' "$@" >&2 + printf '%s\n' "$@" >&2 } warning_msg() { - printf '%s' "$@" >&2 + printf '%s\n' "$@" >&2 } verify_safe_path() |