diff options
author | Stef Walter <stefw@gnome.org> | 2012-07-17 08:09:03 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-07-26 12:22:31 +0200 |
commit | 1f428d62a13e481aa51d1fcee0c4652dc9ef7a72 (patch) | |
tree | 5c56d54b3941e8f092684f0f92a5fab38b66c8e1 | |
parent | 542cb48951b7c4c21ca3669d07bf936b0fa58b42 (diff) |
Fix warning on windows
https://bugzilla.gnome.org/show_bug.cgi?id=44740
-rw-r--r-- | tests/conf-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conf-test.c b/tests/conf-test.c index 92f7205..98841a2 100644 --- a/tests/conf-test.c +++ b/tests/conf-test.c @@ -329,7 +329,7 @@ test_load_modules_user_only (CuTest *tc) SRCDIR "/files/system-modules", SRCDIR "/files/user-modules"); CuAssertPtrNotNull (tc, configs); - CuAssertStrEquals (tc, NULL, p11_kit_message ()); + CuAssertPtrEquals (tc, NULL, (void *)p11_kit_message ()); config = _p11_hash_get (configs, "one"); CuAssertPtrNotNull (tc, config); |