aboutsummaryrefslogtreecommitdiff
path: root/test/test.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.h b/test/test.h
index 0b12fb7..97f229b 100644
--- a/test/test.h
+++ b/test/test.h
@@ -31,13 +31,13 @@ int64_t writecube(const char *, cube_t, size_t n, char [n]);
31/* Test function to be implemented by all tests */ 31/* Test function to be implemented by all tests */
32void run(void); 32void run(void);
33 33
34void log_stderr(const char *str) 34void log_stderr(const char *str, void *unused)
35{ 35{
36 fprintf(stderr, "%s", str); 36 fprintf(stderr, "%s", str);
37} 37}
38 38
39int main(void) { 39int main(void) {
40 nissy_setlogger(log_stderr); 40 nissy_setlogger(log_stderr, NULL);
41 run(); 41 run();
42 return 0; 42 return 0;
43} 43}

Generated with cgit - Back to sebastiano.tronto.net