diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2013-02-16 21:41:02 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2013-02-16 21:41:02 +0100 |
commit | dd13dd06ee53574ec92c800d415984bf00ac2ca6 (patch) | |
tree | 52fc0b27825dace52238aa97d198b959ad395bd4 /tests | |
parent | 7b1f0438a1e9b2501c07d758e019c133ca5b74a5 (diff) |
tests: fix compilation with new eloop API
We added llog-data pointers so fix the tests helpers to set it to NULL by
default.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_include.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_include.h b/tests/test_include.h index 126b5a2..b037008 100644 --- a/tests/test_include.h +++ b/tests/test_include.h @@ -113,7 +113,7 @@ static int test_prepare(struct conf_option *opts, size_t len, log_print_init(argv[0]); - ret = ev_eloop_new(&eloop, log_llog); + ret = ev_eloop_new(&eloop, log_llog, NULL); if (ret) goto err_out; |