From 15dd0189bbd56e71493d9d93fe446a99cef6a3fa Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Mon, 6 Feb 2023 11:18:34 +0100 Subject: [PATCH] tests: use native types for main() arguments Follow the GLib recommendation and use native C types for the main() function's arguments and return values. 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 05ec24a..f57a0be 100644 --- a/tests/gpiod-test.c +++ b/tests/gpiod-test.c @@ -66,7 +66,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); } -int main(gint argc, gchar **argv) +int main(int argc, char **argv) { g_test_init(&argc, &argv, NULL); g_test_set_nonfatal_assertions(); -- 2.30.2