1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-02-12 13:51:55 +00:00

compare correctly with char

This commit is contained in:
Alberto Fanjul 2024-07-13 19:12:52 +02:00
parent aecd52a354
commit a67a182a05

View file

@ -591,7 +591,7 @@ int get_args(char* line)
}
tmp++;
}
if (" " != *last_delim)
if (' ' != *last_delim)
count++;
return count;
}