Explorar el Código

Adding \n on error printing

Vinicius Teshima hace 10 meses
padre
commit
b34681ea9a
Se han modificado 1 ficheros con 1 adiciones y 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"
 }