Tests: fix calling gdk_init()

gdk_init() takes pointers to these arguments so it can modify them to strip all
arguments already consumed.
stage/master/nightly/2024/04/18
Rolf Eike Beer 2024-04-17 07:34:35 +02:00
parent af1d83c94f
commit 1928e7758d
No known key found for this signature in database
GPG Key ID: ABE451FB5EEDADFC
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
int main(int argc, char* argv[])
{
gdk_init(argc, argv);
gdk_init(&argc, &argv);
return 0;
}