Skip to content

Commit

Permalink
[Pager] Fix debug parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Jan 5, 2025
1 parent 33b6534 commit a63ca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protocols/Pager/Pager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ bool PagerClient::addressMatched(uint32_t addr) {
void PagerClient::write(uint32_t* data, size_t len) {
// write code words from buffer
for(size_t i = 0; i < len; i++) {
RADIOLIB_DEBUG_PROTOCOL_PRINTLN("POCSAG W\t%d\t%08lX", i, (long unsigned int)data[i]);
RADIOLIB_DEBUG_PROTOCOL_PRINTLN("POCSAG W\t%lu\t%08lX", (long unsigned int)i, (long unsigned int)data[i]);
PagerClient::write(data[i]);
}
}
Expand Down

0 comments on commit a63ca70

Please sign in to comment.