diff options
author | hexcoder- <heiko@hexco.de> | 2020-06-16 23:07:33 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-06-16 23:07:33 +0200 |
commit | 889e54eab858b1928f74a8c179b32275b62f2286 (patch) | |
tree | ca6096f1d22ba87c262bdeaf57455520ef3143e2 /test/unittests/unit_preallocable.c | |
parent | a14f3c90a81e01f80623bc3642ab98ab9e488ecb (diff) | |
download | afl++-889e54eab858b1928f74a8c179b32275b62f2286.tar.gz |
unit tests: fix stupid compiler warning for gcc 4.8.4
Diffstat (limited to 'test/unittests/unit_preallocable.c')
-rw-r--r-- | test/unittests/unit_preallocable.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unittests/unit_preallocable.c b/test/unittests/unit_preallocable.c index a6c42bbb..b0963a15 100644 --- a/test/unittests/unit_preallocable.c +++ b/test/unittests/unit_preallocable.c @@ -111,4 +111,6 @@ int main(int argc, char **argv) { //return cmocka_run_group_tests (tests, setup, teardown); __real_exit( cmocka_run_group_tests (tests, NULL, NULL) ); + // fake return for dumb compilers + return 0; } |