diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 09:52:39 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 09:52:39 +0300 |
commit | 39ab90b6e780e922b49ebe3b83147291bf65fb8c (patch) | |
tree | 192c2d14a388bb91235334ae39f9a28e8dc1d5e4 | |
parent | 23db0769e868c8389aa377a6f9149a014178cafd (diff) | |
download | egawk-39ab90b6e780e922b49ebe3b83147291bf65fb8c.tar.gz egawk-39ab90b6e780e922b49ebe3b83147291bf65fb8c.tar.bz2 egawk-39ab90b6e780e922b49ebe3b83147291bf65fb8c.zip |
Fix another printf in profile.c.
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1043,7 +1043,7 @@ cleanup: ip1 = pc->branch_if; if (ip1->exec_count > 0) - fprintf(prof_fp, " # %ld", ip1->exec_count); + fprintf(prof_fp, " # %lld", ip1->exec_count); ip1 = end_line(ip1); indent_in(); if (pc->comment != NULL) |