linefeeds in info messages fixed

This commit is contained in:
Achim Gsell
2021-03-04 09:31:52 +01:00
parent 459f6b84df
commit cea58bfc60
3 changed files with 58 additions and 45 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ std::log() {
local -ri fd=$1
local -r fmt="$2"
shift 2
printf -- "$fmt" "$@" 1>&$fd
echo
printf -- "${fmt}" "$@" 1>&$fd
printf -- "\n" 1>&$fd
}
std::info() {