Correct format string

vvp_scope.c:1741: warning: format '%d' expects type 'int', but argument 5 has type 'long unsigned int'
introduced in commit
  331faa2217
This commit is contained in:
Larry Doolittle 2008-02-14 15:35:06 -08:00 committed by Stephen Williams
parent d28fcb8941
commit f9bf502324
1 changed files with 1 additions and 1 deletions

View File

@ -1736,7 +1736,7 @@ static void draw_lpm_add(ivl_lpm_t net)
type = "pow.s";
if (width > 8*sizeof(long)) {
fprintf(stderr, "%s:%u: sorry (vvp-tgt): Signed power "
"result must be no more than %d bits.\n",
"result must be no more than %zu bits.\n",
ivl_lpm_file(net), ivl_lpm_lineno(net),
8*sizeof(long));
exit(1);