aboutsummaryrefslogtreecommitdiffstats
path: root/test/argarray.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/argarray.awk')
-rw-r--r--test/argarray.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/argarray.awk b/test/argarray.awk
index 3911b6e9..8015d852 100644
--- a/test/argarray.awk
+++ b/test/argarray.awk
@@ -6,6 +6,6 @@ BEGIN {
for (x = 0; x < ARGC; x++)
print "\t", ARGV[x]
print "Environment variable TEST=" ENVIRON["TEST"]
- print "and the current input file is called", FILENAME
+ print "and the current input file is called \"" FILENAME "\""
print "but this would change if we would have something to process"
}