summaryrefslogtreecommitdiff
path: root/profile.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-06-10 09:52:39 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-06-10 09:52:39 +0300
commit39ab90b6e780e922b49ebe3b83147291bf65fb8c (patch)
tree192c2d14a388bb91235334ae39f9a28e8dc1d5e4 /profile.c
parent23db0769e868c8389aa377a6f9149a014178cafd (diff)
downloadgawk-39ab90b6e780e922b49ebe3b83147291bf65fb8c.tar.gz
Fix another printf in profile.c.
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 0e00b631..e9c9053a 100644
--- a/profile.c
+++ b/profile.c
@@ -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)