summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2008-05-14 23:23:18 +0200
committerThomas Bächler <thomas@archlinux.org>2008-05-14 23:23:18 +0200
commit6db91dee83bd61660a4338bc291811d24f3ab36f (patch)
treec49cbd85f0460c43d849cc72b009b470495e5f07 /functions
parentaea05efbb7ba200372a94862ce3e962589ad1b4a (diff)
downloadmkinitcpio-6db91dee83bd61660a4338bc291811d24f3ab36f.tar.gz
mkinitcpio-6db91dee83bd61660a4338bc291811d24f3ab36f.tar.xz
Fix a bug in -v output, introduced in the coding style cleanup
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index c4229f6..683b464 100644
--- a/functions
+++ b/functions
@@ -33,7 +33,7 @@ checked_modules ()
fi
}
-msg () { [ "${QUIET}" = "n" ] && echo $}; }
+msg () { [ "${QUIET}" = "n" ] && echo $@; }
err () { echo "ERROR: $@" >&2; }
die () { echo "FATAL: $@" >&2; cleanup; exit 1; }