From: Bartosz Golaszewski Date: Mon, 6 Feb 2023 10:18:34 +0000 (+0100) Subject: tests: use native types for main() arguments X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=15dd0189bbd56e71493d9d93fe446a99cef6a3fa;p=qemu-gpiodev%2Flibgpiod.git 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 --- 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();