Minor error message change.

This commit is contained in:
Can Bölük 2020-07-11 15:25:28 +02:00
parent 573ac3d94c
commit 2c5fd10bf4

View file

@ -204,11 +204,10 @@ namespace vtil
//
if ( var.reg().flags & register_local )
{
warning(
"Local variable %s is used before value assignment (Block %x:%x).\n",
var,
var.at.container->owner->entry_point->entry_vip,
var.at.container->entry_vip
warning(
"Local variable %s is used before value assignment (Block %x).\n",
var,
var.at.container->entry_vip
);
}