diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-10-31 01:30:12 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-10-31 01:30:12 -0400 |
| commit | a60e0e5e9a5fc0e625ece0151328cde6147e8abf (patch) | |
| tree | 979199b268f44d0a4b379016d2485fc87384bc8a /stdlib/stdlib.c | |
| parent | bbbfc692fc0b86c02f012defe4965b10852be185 (diff) | |
Remove unused args for end_test()
Diffstat (limited to 'stdlib/stdlib.c')
| -rw-r--r-- | stdlib/stdlib.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/stdlib/stdlib.c b/stdlib/stdlib.c index 9add4938..8d937384 100644 --- a/stdlib/stdlib.c +++ b/stdlib/stdlib.c @@ -430,11 +430,8 @@ public void start_test(const char *filename, int64_t start, int64_t end) ++TEST_DEPTH; } -public void end_test(const void *expr, const TypeInfo_t *type, const char *expected, const char *filename, int64_t start, int64_t end) +public void end_test(const void *expr, const TypeInfo_t *type, const char *expected) { - (void)filename; - (void)start; - (void)end; --TEST_DEPTH; if (!expr || !type) return; |
