mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +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)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
gsize k;
|
int k;
|
||||||
for (k = 1; k < argc; k++)
|
for (k = 1; k < argc; k++)
|
||||||
{
|
{
|
||||||
test = find_test (argv[k]);
|
test = find_test (argv[k]);
|
||||||
|
Loading…
Reference in New Issue
Block a user