mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
Fix signedness warnings in tests/gobject/performance-threaded.c
I did it wrong last time... my bad... tests/gobject/performance-threaded.c: In function ‘main’: tests/gobject/performance-threaded.c:361:21: warning: comparison of integer expressions of different signedness: ‘gsize’ {aka ‘long unsigned int’} and ‘int’ 361 | for (k = 1; k < argc; k++) | ^
This commit is contained in:
parent
2cb303b7aa
commit
7b78f0b8ce
@ -357,7 +357,7 @@ main (int argc,
|
||||
|
||||
if (argc > 1)
|
||||
{
|
||||
gsize k;
|
||||
int k;
|
||||
for (k = 1; k < argc; k++)
|
||||
{
|
||||
test = find_test (argv[k]);
|
||||
|
Loading…
Reference in New Issue
Block a user