aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2021-05-01 11:10:03 +0000
committerAndrew Turner <andrew@FreeBSD.org>2021-05-01 11:10:03 +0000
commitf1957db43d28dbae1f82905304bab5be51942342 (patch)
tree80c9a6b4ba35f192e40950db9bf4ecf681f95a06 /sbin
parentc78ad207baed95dc3148632ab882d445acc39034 (diff)
downloadsrc-f1957db43d28dbae1f82905304bab5be51942342.tar.gz
src-f1957db43d28dbae1f82905304bab5be51942342.zip
Fix building sysctl(8) after c78ad20
In sysctl we parse an efi header on amd64. Fix this after changing the virtual memory type from a void * to a uint64_t in c78ad20.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/sysctl/sysctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c
index 30d6d94723fa..8d658dc2debe 100644
--- a/sbin/sysctl/sysctl.c
+++ b/sbin/sysctl/sysctl.c
@@ -794,8 +794,8 @@ S_efi_map(size_t l2, void *p)
type = types[map->md_type];
if (type == NULL)
type = "<INVALID>";
- printf("\n%23s %012jx %12p %08jx ", type,
- (uintmax_t)map->md_phys, map->md_virt,
+ printf("\n%23s %012jx %012jx %08jx ", type,
+ (uintmax_t)map->md_phys, (uintmax_t)map->md_virt,
(uintmax_t)map->md_pages);
if (map->md_attr & EFI_MD_ATTR_UC)
printf("UC ");