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 | e7d3ab1f2e1ef0cb03d32a07d3b14948656c1c2a (patch) | |
tree | baf2ea32fe92a5d2cfd9273182c414d58823e1df /configure | |
parent | 5a6767ee9150a6c5049be8896f34061e99882eee (diff) | |
download | ntapi-e7d3ab1f2e1ef0cb03d32a07d3b14948656c1c2a.tar.bz2 ntapi-e7d3ab1f2e1ef0cb03d32a07d3b14948656c1c2a.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() |