diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:16 +0000 |
commit | 043ef3e8da8e5bc3731c369b34c407876e96e02d (patch) | |
tree | 3bcff5fb2d0300ae3a6e6f77c38d46a2916e8659 /configure | |
parent | 877787474288b9de844d1294712e7e25b1048394 (diff) | |
download | bcparser-043ef3e8da8e5bc3731c369b34c407876e96e02d.tar.bz2 bcparser-043ef3e8da8e5bc3731c369b34c407876e96e02d.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() |