diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:17 +0000 |
commit | dd4afc39075d38d7330db2f315f81c167a3dba0b (patch) | |
tree | 1136b34b5effe39b15272d6aec9ed6126260fca6 /configure | |
parent | 39bc3befce6db55acd87379fce909467e62c92ba (diff) | |
download | ntcon-dd4afc39075d38d7330db2f315f81c167a3dba0b.tar.bz2 ntcon-dd4afc39075d38d7330db2f315f81c167a3dba0b.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() |