Remove extra 0x before %p format strings introduced by r296182

This commit is contained in:
Oleksandr Tymoshenko 2016-07-08 22:32:03 +00:00
parent aaf8b608ca
commit 3fd8559331
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=302465
3 changed files with 3 additions and 3 deletions

View File

@ -421,7 +421,7 @@ fdt_setup_fdtp()
/* If we were given the address of a valid blob in memory, use it. */
if (fdt_to_load != NULL) {
if (fdt_load_dtb_addr(fdt_to_load) == 0) {
printf("Using DTB from memory address 0x%p.\n",
printf("Using DTB from memory address %p.\n",
fdt_to_load);
return (0);
}

View File

@ -85,7 +85,7 @@ __elfN(uboot_exec)(struct preloaded_file *fp)
return (error);
entry = (void *)e->e_entry;
printf("Kernel entry at 0x%p...\n", entry);
printf("Kernel entry at %p...\n", entry);
dev_cleanup();
printf("Kernel args: %s\n", fp->f_args);

View File

@ -469,7 +469,7 @@ ub_dump_di(int handle)
int i;
printf("device info (%d):\n", handle);
printf(" cookie\t= 0x%p\n", di->cookie);
printf(" cookie\t= %p\n", di->cookie);
printf(" type\t\t= 0x%08x\n", di->type);
if (di->type == DEV_TYP_NET) {