Repository: lucy-clownfish Updated Branches: refs/heads/master f8d4b8bed -> fa9b77b93
Missing return statement in test Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/fa9b77b9 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/fa9b77b9 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/fa9b77b9 Branch: refs/heads/master Commit: fa9b77b93d87278d3fbba6d01eddbfe316507a72 Parents: f8d4b8b Author: Nick Wellnhofer <[email protected]> Authored: Sun Apr 26 16:03:03 2015 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Sun Apr 26 16:03:03 2015 +0200 ---------------------------------------------------------------------- runtime/core/Clownfish/Test/TestVArray.c | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/fa9b77b9/runtime/core/Clownfish/Test/TestVArray.c ---------------------------------------------------------------------- diff --git a/runtime/core/Clownfish/Test/TestVArray.c b/runtime/core/Clownfish/Test/TestVArray.c index 64fb808..b2a91f9 100644 --- a/runtime/core/Clownfish/Test/TestVArray.c +++ b/runtime/core/Clownfish/Test/TestVArray.c @@ -50,6 +50,8 @@ S_array_with_garbage() { VA_Excise(array, 10, 10); for (int i = 0; i < 10; i++) { VA_Pop(array); } VA_Resize(array, 10); + + return array; } static void
