aboutsummaryrefslogtreecommitdiffstats
path: root/test/indirectcall.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-01-30 10:06:16 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-01-30 10:06:16 +0200
commit1bd1b885c7dd16b5e4ab78c040312f6f7d742784 (patch)
treed7e1c0c8dfdf4002d9a0c7f4bf634cafe2663a42 /test/indirectcall.awk
parent5153d0f04b7ad460b23ae5a011061f7b93a122ef (diff)
downloadegawk-1bd1b885c7dd16b5e4ab78c040312f6f7d742784.tar.gz
egawk-1bd1b885c7dd16b5e4ab78c040312f6f7d742784.tar.bz2
egawk-1bd1b885c7dd16b5e4ab78c040312f6f7d742784.zip
Disallow calling a function parameter. Check params are not function names.
Diffstat (limited to 'test/indirectcall.awk')
-rw-r--r--test/indirectcall.awk8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/indirectcall.awk b/test/indirectcall.awk
index 5cfdd235..74290973 100644
--- a/test/indirectcall.awk
+++ b/test/indirectcall.awk
@@ -5,13 +5,13 @@
# average --- return the average of the values in fields $first - $last
-function average(first, last, sum, i)
+function average(first, last, the_sum, i)
{
- sum = 0;
+ the_sum = 0;
for (i = first; i <= last; i++)
- sum += $i
+ the_sum += $i
- return sum / (last - first + 1)
+ return the_sum / (last - first + 1)
}
# sum --- return the average of the values in fields $first - $last