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 <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2018-01-04 15:04:18 -08:00
parent dce8682e10
commit 6b22e4e85a
1 changed files with 2 additions and 0 deletions

View File

@ -196,6 +196,8 @@ int main(int argc, char **argv)
printf("Found %u registrations and %u handoffs.\n",
count_protos, count_handoffs);
return 0;
}
/*