Skip to content

Commit

Permalink
apps: Fix x64 native btshell build
Browse files Browse the repository at this point in the history
  • Loading branch information
m-gorecki authored and sjanc committed Apr 9, 2024
1 parent bc1f354 commit 6d153f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/btshell/src/cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ cmd_keystore_iterator(int obj_type,
console_printf("Key: ");
if (ble_addr_cmp(&val->sec.peer_addr, BLE_ADDR_ANY) == 0) {
console_printf("ediv=%u ", val->sec.ediv);
console_printf("ediv=%llu ", val->sec.rand_num);
console_printf("rand=%" PRIu64, val->sec.rand_num);
} else {
console_printf("addr_type=%u ", val->sec.peer_addr.type);
print_addr(val->sec.peer_addr.val);
Expand Down

0 comments on commit 6d153f9

Please sign in to comment.