diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-02-01 08:13:49 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-02-01 08:13:49 +0200 |
commit | 9c81550ac0f386929462a200e57a1dbe0953fe10 (patch) | |
tree | 6fcefaa8bebeda5b298a2bf5a062a36b972f8e27 /awklib/eg/test-programs/gen-float-table.awk | |
parent | 7c12765b99d41b8842d29a0bba37794744bb6834 (diff) | |
download | egawk-9c81550ac0f386929462a200e57a1dbe0953fe10.tar.gz egawk-9c81550ac0f386929462a200e57a1dbe0953fe10.tar.bz2 egawk-9c81550ac0f386929462a200e57a1dbe0953fe10.zip |
Updates to inf/nan test programs.
Diffstat (limited to 'awklib/eg/test-programs/gen-float-table.awk')
-rw-r--r-- | awklib/eg/test-programs/gen-float-table.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awklib/eg/test-programs/gen-float-table.awk b/awklib/eg/test-programs/gen-float-table.awk index c35f2dff..ea6269c3 100644 --- a/awklib/eg/test-programs/gen-float-table.awk +++ b/awklib/eg/test-programs/gen-float-table.awk @@ -50,8 +50,8 @@ BEGIN { values[i], names[k], compare[j], - the_func(values[i], compare[j]) ? - "true" : "false"); + @the_func(values[i], compare[j]) ? + "True" : "False"); } printf("\n"); } |