Fix mistake in comparing

This commit is contained in:
2020-04-17 12:59:12 +02:00
parent c662411c61
commit be43f44412
+1 -1
View File
@@ -73,7 +73,7 @@ int main (int argc, char *argv[]) {
// TODO: Make real statistics, please.
n_stat_out++;
if (data.first->n_recv_packets <= JUNGFRAU_N_PACKETS_PER_FRAME) {
if (data.first->n_recv_packets < JUNGFRAU_N_PACKETS_PER_FRAME) {
n_frames_with_missing_packets++;
}