Change other instances of "0x%p" to "%p"

Followup to c0f9488b61
develop
lethosor 2022-11-10 16:02:28 -05:00
parent c0f9488b61
commit 2d40626912
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
2 changed files with 2 additions and 2 deletions

@ -147,7 +147,7 @@ command_result df_cleanowned (color_ostream &out, vector <string> & parameters)
std::string description;
item->getItemDescription(&description, 0);
out.print(
"0x%p %s (wear %d)",
"%p %s (wear %d)",
item,
description.c_str(),
item->getWear()

@ -334,7 +334,7 @@ command_result df_probe (color_ostream &out, vector <string> & parameters)
out.print("%-16s", "");
out.print(" %4d", block.local_feature);
out.print(" (%2d)", local.type);
out.print(" addr 0x%p ", local.origin);
out.print(" addr %p ", local.origin);
out.print(" %s\n", sa_feature(local.type));
}
PRINT_FLAG( des, feature_global );