aboutsummaryrefslogtreecommitdiffstats
path: root/src/etisnoop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/etisnoop.cpp')
-rw-r--r--src/etisnoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etisnoop.cpp b/src/etisnoop.cpp
index 1c02d24..7137d2e 100644
--- a/src/etisnoop.cpp
+++ b/src/etisnoop.cpp
@@ -371,7 +371,7 @@ int eti_analyse(eti_analyse_config_t &config)
int fct = p[4];
printbuf("FCT - Frame Count", 2, p+4, 1, fct_str);
if (last_fct != -1) {
- if (last_fct + 1 % 250 != fct) {
+ if ((last_fct + 1) % 250 != fct) {
printf("FCT not contiguous\n");
}
}