From 3dc121c0569474fc156e2bdef809fb486a595fc9 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Mon, 28 Aug 2017 21:59:47 +0300 Subject: Remove warnings around some printf arguments in interpret.h. --- interpret.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'interpret.h') diff --git a/interpret.h b/interpret.h index 6c5b432e..166a11e1 100644 --- a/interpret.h +++ b/interpret.h @@ -973,11 +973,15 @@ arrayfor: if (arg_count < min_req) fatal(_("%s: called with %lu arguments, expecting at least %lu"), - pc[1].func_name, arg_count, min_req); + pc[1].func_name, + (unsigned long) arg_count, + (unsigned long) min_req); if (do_lint && ! f->suppress_lint && arg_count > max_expect) lintwarn(_("%s: called with %lu arguments, expecting no more than %lu"), - pc[1].func_name, arg_count, max_expect); + pc[1].func_name, + (unsigned long) arg_count, + (unsigned long) max_expect); PUSH_CODE(pc); r = awk_value_to_node(pc->extfunc(arg_count, & result, f)); -- cgit v1.2.3