Add a missing NULL.

This commit is contained in:
Sebastian Ramacher 2012-03-19 17:08:23 +01:00
parent 5b6a399256
commit 1bccf8846f

View File

@ -6,7 +6,7 @@
START_TEST(test_create) {
zathura_t* zathura = zathura_init(0, NULL);
fail_unless(zathura != NULL, "Could not create session");
fail_unless(zathura != NULL, "Could not create session", NULL);
zathura_free(zathura);
} END_TEST