From 79187b8c433aaa0e69b13c037907c69416ad0b55 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 1 Feb 2023 10:18:57 +0100 Subject: [PATCH] Revert "tests: consistently use GLib types in tests" GLib recommends to use standard library's int as the return type for main() and g_test_run() also returns int, not gint. Revert the commit that made main() return gint. This reverts commit c0176f58f98e837f1b9eb40514ac58c51f24e644. Signed-off-by: Bartosz Golaszewski --- tests/gpiod-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gpiod-test.c b/tests/gpiod-test.c index 841b6bd..39a1f40 100644 --- a/tests/gpiod-test.c +++ b/tests/gpiod-test.c @@ -60,7 +60,7 @@ static void add_test_from_list(gpointer element, gpointer data G_GNUC_UNUSED) g_test_add_data_func(test->path, test, test_func_wrapper); } -gint main(gint argc, gchar **argv) +int main(gint argc, gchar **argv) { g_test_init(&argc, &argv, NULL); g_test_set_nonfatal_assertions(); -- 2.30.2