From 6b22e4e85af3f8df9e1d1bc71a95c3f8898324e5 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Thu, 4 Jan 2018 15:04:18 -0800 Subject: [PATCH] Add an exit code to make-dissectors. Explicitly return 0 from make-dissectors on success. Hopefully this will fix some Windows builder failures. Change-Id: I0c172597584c52ced2380719135e8559ef83392a Reviewed-on: https://code.wireshark.org/review/25150 Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs --- 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 5da5ebbbc3..514b1efef6 100644 --- a/epan/dissectors/make-dissectors.c +++ b/epan/dissectors/make-dissectors.c @@ -196,6 +196,8 @@ int main(int argc, char **argv) printf("Found %u registrations and %u handoffs.\n", count_protos, count_handoffs); + + return 0; } /*