diff options
author | Bruno Haible <bruno@clisp.org> | 2023-04-29 03:13:52 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2023-04-29 03:13:52 +0200 |
commit | bcdad4ccd5ba01d3ff58a584ae6e33a9a511774b (patch) | |
tree | f1fc2eb64f8f79665884a46bbad7a7689247973b /tests/test-hamt.c | |
parent | efb17ec15925db925088e801920a3df17b11ac49 (diff) | |
download | gnulib-bcdad4ccd5ba01d3ff58a584ae6e33a9a511774b.tar.gz |
hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.
* tests/test-hamt.c (main): Finish with exit code 0.
Diffstat (limited to 'tests/test-hamt.c')
-rw-r--r-- | tests/test-hamt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-hamt.c b/tests/test-hamt.c index 6fdffeac06..ff5df6e19a 100644 --- a/tests/test-hamt.c +++ b/tests/test-hamt.c @@ -376,4 +376,6 @@ main (void) test_functional_update (); test_destructive_update (); test_iterator (); + + return 0; } |