Explorar o código

Adding \n on error printing

Vinicius Teshima hai 10 meses
pai
achega
b34681ea9a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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"
 }