From 4584c88a99a7c8f8df75877321a35c0a9367a9c5 Mon Sep 17 00:00:00 2001 From: "W. Felix Handte" Date: Tue, 17 Dec 2019 11:26:18 -0800 Subject: [PATCH] Don't Rely on Implicit Return in Main --- contrib/diagnose_corruption/check_flipped_bits.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/diagnose_corruption/check_flipped_bits.c b/contrib/diagnose_corruption/check_flipped_bits.c index 8555959e..23b53287 100644 --- a/contrib/diagnose_corruption/check_flipped_bits.c +++ b/contrib/diagnose_corruption/check_flipped_bits.c @@ -214,4 +214,6 @@ int main(int argc, char* argv[]) { perturb_bytes(&stuff); free_stuff(&stuff); + + return 0; } \ No newline at end of file