Clean up compiler warning.

This commit is contained in:
Cary R 2008-06-25 15:42:57 -07:00 committed by Stephen Williams
parent c17ffcae2c
commit 12783674cb
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ static void format_vpiIntVal(vvp_fun_signal_vec*sig, int base, unsigned wid,
{
vvp_vector4_t sub = sig->vec4_value().subvalue(base, wid);
long val = 0;
bool flag = vector4_to_value(sub, val, signed_flag, false);
vector4_to_value(sub, val, signed_flag, false);
vp->value.integer = val;
}