aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/functions.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter07/functions.xml')
-rw-r--r--chapter07/functions.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter07/functions.xml b/chapter07/functions.xml
index 7222881cd..10b53f501 100644
--- a/chapter07/functions.xml
+++ b/chapter07/functions.xml
@@ -147,12 +147,12 @@ loadproc()
if [ ! -n "$pid" ]
then
#
-# Empty $pid variable means it's not running, so we run $* (all
+# Empty $pid variable means it's not running, so we run "$@" (all
# parameters giving to this function from the script) and then check the
# return value
#
- $*
+ "$@"
evaluate_retval
else
#