Эх сурвалжийг харах

Adding \n on error printing

Vinicius Teshima 10 сар өмнө
parent
commit
b34681ea9a
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      luks.sh

+ 1 - 1
luks.sh

@@ -1,7 +1,7 @@
 #!/bin/sh
 
 ERR () {
-	printf '[ERROR] %s' "$1"
+	printf '[ERROR] %s\n' "$1"
 	test -n "$2" && exit "$2"
 }