fix double "0x" when printing address in probe

develop
myk002 2022-11-10 10:48:04 -08:00
parent 4d97c90f53
commit c0f9488b61
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -185,7 +185,7 @@ command_result df_probe (color_ostream &out, vector <string> & parameters)
}
auto &block = *b->getRaw();
out.print("block addr: 0x%p\n\n", &block);
out.print("block addr: %p\n\n", &block);
/*
if (showBlock)
{