From 4a3d2f254868347ddf54bc649c1ebf1d0af5ae0c Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 16 Oct 2018 21:10:59 +0300 Subject: Fix compiler warning from Cygwin. --- profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'profile.c') diff --git a/profile.c b/profile.c index e6a528d3..3a4ec04d 100644 --- a/profile.c +++ b/profile.c @@ -420,7 +420,7 @@ cleanup: emalloc(str, char *, len, "pprint"); sprintf(str, "%s%s%s%.*s %s", t1->pp_str, op2str(pc->opcode), pc->comment->memory->stptr, - indent_level + 1, tabs, t2->pp_str); + (int) indent_level + 1, tabs, t2->pp_str); } pp_free(t1); pp_free(t2); -- cgit v1.2.3