aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pciconf
diff options
context:
space:
mode:
authorWojciech Macek <wma@FreeBSD.org>2016-02-26 10:24:24 +0000
committerWojciech Macek <wma@FreeBSD.org>2016-02-26 10:24:24 +0000
commit98179b624c507d92f2706bc202ce0722176a6e19 (patch)
tree919d0cc6b6dfe3b12e7d8f7b3061f203a0aafae0 /usr.sbin/pciconf
parent5f609a08121d40e29f8fe043d33325d0dd5352f2 (diff)
Notes
Diffstat (limited to 'usr.sbin/pciconf')
-rw-r--r--usr.sbin/pciconf/cap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pciconf/cap.c b/usr.sbin/pciconf/cap.c
index 68130bb60232e..c1098c1a06e83 100644
--- a/usr.sbin/pciconf/cap.c
+++ b/usr.sbin/pciconf/cap.c
@@ -657,13 +657,13 @@ cap_ea(int fd, struct pci_conf *p, uint8_t ptr)
b++;
}
- printf("\n\t\t [%d] %s, %s, %s, base [0x%lx], size [0x%lx]"
+ printf("\n\t\t [%d] %s, %s, %s, base [0x%jx], size [0x%jx]"
"\n\t\t\tPrimary properties [0x%x] (%s)"
"\n\t\t\tSecondary properties [0x%x] (%s)",
bei, ea_bei_to_name(bei),
(flags & PCIM_EA_ENABLE ? "Enabled" : "Disabled"),
- (flags & PCIM_EA_WRITABLE ? "Writable" : "Read-only"),
- base, max_offset + 1,
+ (flags & PCIM_EA_WRITABLE ? "Writable" : "Read-only"),
+ (uintmax_t)base, (uintmax_t)(max_offset + 1),
flags_pp, ea_prop_to_name(flags_pp),
flags_sp, ea_prop_to_name(flags_sp));
}