From 674ee8b72defc140447c2c65e3e3e65188da1919 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Fri, 28 May 2004 21:42:40 +0000 Subject: [PATCH] Make sure we return 0 if test passed. --- crypto/sha/sha256t.c | 2 ++ crypto/sha/sha512t.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/crypto/sha/sha256t.c b/crypto/sha/sha256t.c index 68d95f1ab5..f57cfc54f5 100644 --- a/crypto/sha/sha256t.c +++ b/crypto/sha/sha256t.c @@ -125,4 +125,6 @@ int main () fprintf(stdout,"."); fflush(stdout); fprintf(stdout," passed.\n"); fflush(stdout); + + return 0; } diff --git a/crypto/sha/sha512t.c b/crypto/sha/sha512t.c index 603fcefcbe..283b59c5ce 100644 --- a/crypto/sha/sha512t.c +++ b/crypto/sha/sha512t.c @@ -163,4 +163,6 @@ int main () fprintf(stdout,"."); fflush(stdout); fprintf(stdout," passed.\n"); fflush(stdout); + + return 0; } -- 2.40.0