diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-04-20 16:19:59 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-04-20 16:19:59 +0200 |
commit | a0f10ed8a0b03f5f035e6da0c99b3b541aea23be (patch) | |
tree | ca49a5c28b50fe39abeb1e5fb9237d6084020a44 | |
parent | 42a1e4e4d48fa23279ca13dc4c028ad933fbd596 (diff) | |
download | etisnoop-a0f10ed8a0b03f5f035e6da0c99b3b541aea23be.tar.gz etisnoop-a0f10ed8a0b03f5f035e6da0c99b3b541aea23be.tar.bz2 etisnoop-a0f10ed8a0b03f5f035e6da0c99b3b541aea23be.zip |
Do not break YAML on FCT discontinuity
-rw-r--r-- | src/etianalyse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etianalyse.cpp b/src/etianalyse.cpp index 415e7a6..efb614a 100644 --- a/src/etianalyse.cpp +++ b/src/etianalyse.cpp @@ -225,7 +225,7 @@ void ETI_Analyser::eti_analyse() printbuf("FCT", 2, p+4, 1, "Frame Count", to_string(fct)); if (last_fct != -1) { if ((last_fct + 1) % 250 != fct) { - printbuf("Error: FCT not contiguous", 2); + fprintf(stderr, "Error: FCT not contiguous\n"); } } last_fct = fct; |