From 39ab90b6e780e922b49ebe3b83147291bf65fb8c Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 10 Jun 2020 09:52:39 +0300 Subject: Fix another printf in profile.c. --- profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'profile.c') 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) -- cgit v1.2.1