summaryrefslogtreecommitdiff
path: root/scripts/live-functions
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-24 09:45:11 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:31:05 +0100
commitcc62ca76356dc851006e3fc980cc1dcc46ef9ca6 (patch)
treee821a640df8121aaea6e02e814c6a82bc75bac46 /scripts/live-functions
parent32e6d9c217846ec5f6d2da9b773a34c4d1970348 (diff)
downloadlive-boot-cc62ca76356dc851006e3fc980cc1dcc46ef9ca6.tar.gz
live-boot-cc62ca76356dc851006e3fc980cc1dcc46ef9ca6.zip
Consistently using curly brackets for variables.
Diffstat (limited to 'scripts/live-functions')
-rw-r--r--scripts/live-functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/live-functions b/scripts/live-functions
index baa920c..6fb57c6 100644
--- a/scripts/live-functions
+++ b/scripts/live-functions
@@ -19,11 +19,11 @@ log_wait_msg ()
# Print a message and wait for enter
if [ -x /sbin/usplash_write ]
then
- /sbin/usplash_write "INPUTENTER $@"
+ /sbin/usplash_write "INPUTENTER ${@}"
read nunya < /dev/.initramfs/usplash_outfifo
fi
- _log_msg "Waiting: $@ ..."
+ _log_msg "Waiting: ${@} ..."
}
really_export ()