summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-12-10 06:22:21 +0100
committerJohn Crispin <blogic@openwrt.org>2014-12-10 06:22:21 +0100
commite195e48623be73d9b6a787d7ede951cb426393a9 (patch)
tree5d0ddc2d722b32159a690fcc314a97e4d6c530dd
parent4ae19ab4fcdd70dbfc8c303d752502f2da5a7e75 (diff)
fix build for 64 bit systems
Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r--cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli.c b/cli.c
index 17809c2..e6b34d7 100644
--- a/cli.c
+++ b/cli.c
@@ -177,8 +177,8 @@ mbim_attach_response(void *buffer, int len)
mbim_enum_string(mbim_nw_error_values, le32toh(ps->nwerror)));
printf(" packetservicestate: %04X - %s\n", le32toh(ps->packetservicestate),
mbim_enum_string(mbim_packet_service_state_values, le32toh(ps->packetservicestate)));
- printf(" uplinkspeed: %"PRIu64"\n", le64toh(ps->uplinkspeed));
- printf(" downlinkspeed: %"PRIu64"\n", le64toh(ps->downlinkspeed));
+ printf(" uplinkspeed: %"PRIu64"\n", (uint64_t) le64toh(ps->uplinkspeed));
+ printf(" downlinkspeed: %"PRIu64"\n", (uint64_t) le64toh(ps->downlinkspeed));
if (MBIM_PACKET_SERVICE_STATE_ATTACHED == le32toh(ps->packetservicestate))
return 0;