From 2add5e701f3d7e397ef46f144e206fe4c127e9cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Wed, 22 Nov 2017 19:34:28 +0000 Subject: [PATCH] make-dissectors: Print the number of functions successfully parsed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7364571ddc9b86efd41dcade97f843037e09f0ac Reviewed-on: https://code.wireshark.org/review/24541 Reviewed-by: João Valverde --- epan/dissectors/make-dissectors.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/epan/dissectors/make-dissectors.c b/epan/dissectors/make-dissectors.c index b023da7877..887266764b 100644 --- a/epan/dissectors/make-dissectors.c +++ b/epan/dissectors/make-dissectors.c @@ -136,6 +136,8 @@ int main(int argc, char **argv) printf(" { NULL, NULL }\n" "};\n"); + fprintf(stderr, "Found %u registrations and %u handoffs.\n", protos->len, handoffs->len); + g_regex_unref(protos_regex); g_regex_unref(handoffs_regex);