From: W. Felix Handte Date: Tue, 17 Dec 2019 19:26:18 +0000 (-0800) Subject: Don't Rely on Implicit Return in Main X-Git-Tag: v1.4.5^2~130^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4584c88a99a7c8f8df75877321a35c0a9367a9c5;p=thirdparty%2Fzstd.git Don't Rely on Implicit Return in Main --- diff --git a/contrib/diagnose_corruption/check_flipped_bits.c b/contrib/diagnose_corruption/check_flipped_bits.c index 8555959e4..23b53287f 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