diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-07-03 19:25:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 19:25:15 +0200 |
commit | b5fb2066cb9dc71669d38d5a03bd1a6d1992a112 (patch) | |
tree | 2b61f3814f32019fff9893a0297ac3a79f81a3ac /example | |
parent | 422d0025421565f56be4e75d1217fb96fcf41dc8 (diff) |
bins: add support for 64bit bins (#1626)
Diffstat (limited to 'example')
-rw-r--r-- | example/ndpiReader.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index d7d720fff..f8e55c484 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1232,6 +1232,9 @@ void print_bin(FILE *fout, const char *label, struct ndpi_bin *b) { case ndpi_bin_family32: fprintf(fout, "%s%u", (i > 0) ? sep : "", b->u.bins32[i]); break; + case ndpi_bin_family64: + fprintf(fout, "%s%llu", (i > 0) ? sep : "", (unsigned long long)b->u.bins64[i]); + break; } } |