From 8a12fb47ce931f5be4e1cfc026e1ef77fcf507fb Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Fri, 12 May 2017 10:05:56 +0100 Subject: array-test: Fix a comment --- glib/tests/array-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/tests/array-test.c b/glib/tests/array-test.c index 61851e0dc..01c597d86 100644 --- a/glib/tests/array-test.c +++ b/glib/tests/array-test.c @@ -558,7 +558,7 @@ pointer_array_find_empty (void) g_assert_false (g_ptr_array_find (array, "some-value", NULL)); /* NULL index */ g_assert_false (g_ptr_array_find (array, "some-value", &idx)); /* non-NULL index */ g_assert_false (g_ptr_array_find_with_equal_func (array, "some-value", g_str_equal, NULL)); /* NULL index */ - g_assert_false (g_ptr_array_find_with_equal_func (array, "some-value", g_str_equal, &idx)); /* NULL index */ + g_assert_false (g_ptr_array_find_with_equal_func (array, "some-value", g_str_equal, &idx)); /* non-NULL index */ g_ptr_array_free (array, TRUE); } -- cgit v1.2.1