diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-09-07 13:34:26 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-09-07 13:34:26 +0300 |
commit | 000380108735d54f472a7825a865d0308ed357cb (patch) | |
tree | 7927f124ed67d7c2347ba9e44e9e79b57e167fc3 /test | |
parent | 472dc41713ee71609b2ddc8c77c00adb34354154 (diff) | |
download | egawk-000380108735d54f472a7825a865d0308ed357cb.tar.gz egawk-000380108735d54f472a7825a865d0308ed357cb.tar.bz2 egawk-000380108735d54f472a7825a865d0308ed357cb.zip |
Revise readdir_do_ftype() argument.
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/readdir.awk | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 6b02c6a1..135251af 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2012-09-07 Arnold D. Robbins <arnold@skeeve.com> + + * readdir.awk: Change argument to readdir_do_ftype(). + 2012-08-28 Andrew J. Schorr <aschorr@telemetry-investments.com> * Makefile.am (EXTRA_DIST): Add jarebug.sh. diff --git a/test/readdir.awk b/test/readdir.awk index 3ec664df..2e3df453 100644 --- a/test/readdir.awk +++ b/test/readdir.awk @@ -1,7 +1,7 @@ @load "readdir" BEGIN { - readdir_do_ftype(2) + readdir_do_ftype("stat") } { print } |