From: Jacob Lifshay Date: Mon, 18 Apr 2022 17:37:53 +0000 (-0700) Subject: fix warning X-Git-Tag: opf_rfc_ls005_v1~2730 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c503d6d3179f229d7e99fcfeb77397e4db38544d;p=libreriscv.git fix warning --- diff --git a/openpower/sv/bitmanip/divmnu64.c b/openpower/sv/bitmanip/divmnu64.c index 2bdb5bbbb..f9f6572d0 100644 --- a/openpower/sv/bitmanip/divmnu64.c +++ b/openpower/sv/bitmanip/divmnu64.c @@ -26,7 +26,7 @@ int nlz(unsigned x) { void dumpit(char *msg, int n, unsigned v[]) { int i; - printf(msg); + printf("%s", msg); for (i = n-1; i >= 0; i--) printf(" %08x", v[i]); printf("\n"); }