0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 03:23:54 +01:00

i have no clue whats wrong here

This commit is contained in:
2025-05-17 21:59:03 +02:00
parent 941a4fb98a
commit 6ac9140bd9

View File

@@ -244,7 +244,7 @@ int main(int argc, char *argv[]) {
uint32_t dropped_packets = data.packet_data.frame_num - vban_frame;
if (quiet == 0) printf("Dropped %u packets\n", dropped_packets);
} else {
if (quiet == 0) printf("Packets received out of order (got:%d, expected:%d)\n", data.packet_data.frame_num, vban_frame);
if (quiet == 0) printf("Packets received out of order (got:%u, expected:%u)\n", data.packet_data.frame_num, vban_frame);
}
vban_frame = data.packet_data.frame_num;
}