mirror of
https://github.com/glfw/glfw.git
synced 2025-04-06 22:15:06 +00:00
Use the correct type in a for loop
The `atomCount` variable has the type `unsigned long`,
so the `for` loop iterating over it should use the same type.
Closes #1701.
(cherry picked from commit 250b94cd03
)
This commit is contained in:
parent
a8e5c530ee
commit
11e5102d83
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ static Atom getAtomIfSupported(Atom* supportedAtoms,
|
|||
{
|
||||
const Atom atom = XInternAtom(_glfw.x11.display, atomName, False);
|
||||
|
||||
for (unsigned int i = 0; i < atomCount; i++)
|
||||
for (unsigned long i = 0; i < atomCount; i++)
|
||||
{
|
||||
if (supportedAtoms[i] == atom)
|
||||
return atom;
|
||||
|
|
Loading…
Add table
Reference in a new issue