Fix incorrect typecast.

This patch fixes an incorrect typecast in vvp/main.cc.
This commit is contained in:
Cary R 2008-06-13 09:55:47 -07:00 committed by Stephen Williams
parent eed4ff7e2d
commit 99a46fd5af
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ int main(int argc, char*argv[])
vpi_mcd_printf(1, " %8lu resolv\n",count_functors_resolv);
vpi_mcd_printf(1, " %8lu signals\n", count_functors_sig);
vpi_mcd_printf(1, " ... %8lu opcodes (%zu bytes)\n",
count_opcodes, (unsigned long)size_opcodes);
count_opcodes, size_opcodes);
vpi_mcd_printf(1, " ... %8lu nets\n", count_vpi_nets);
vpi_mcd_printf(1, " ... %8lu vvp_nets (%zu bytes)\n",
count_vvp_nets, size_vvp_nets);