diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-06-10 09:52:45 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-06-10 09:52:45 -0400 |
commit | a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3 (patch) | |
tree | 9bd5879ea9ec4034eb1855c219358843c6c790ce /awk.h | |
parent | dff45aba93a56a50d5ad26c5ef1597abc1e2fe79 (diff) | |
download | egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.gz egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.bz2 egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.zip |
Convert exec_count to unsigned long long.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -759,7 +759,7 @@ typedef struct exp_instruction { awk_value_t *result, struct awk_ext_func *finfo); long dl; - long long ldl; // for exec_count + unsigned long long ldl; // for exec_count char *name; } d; |