diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 06:15:12 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 06:15:12 +0300 |
commit | 23db0769e868c8389aa377a6f9149a014178cafd (patch) | |
tree | 30c634ad0bf62e4167930497b5a9ce5810ecd03c /profile.c | |
parent | 246542232f1eeab0436ee430385fe2c1e6d98f24 (diff) | |
download | egawk-23db0769e868c8389aa377a6f9149a014178cafd.tar.gz egawk-23db0769e868c8389aa377a6f9149a014178cafd.tar.bz2 egawk-23db0769e868c8389aa377a6f9149a014178cafd.zip |
Improve long long exec_count.
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -297,7 +297,7 @@ pprint(INSTRUCTION *startp, INSTRUCTION *endp, int flags) ip2 = (pc + 1)->lasti; if (do_profile && ip1->exec_count > 0) - fprintf(prof_fp, " # %ld", ip1->exec_count); + fprintf(prof_fp, " # %lld", ip1->exec_count); end_line(ip1); skip_comment = true; |