Fix clang warning : self-comparison always evaluates to false

This commit is contained in:
Lambert Clara 2012-04-21 11:47:58 +02:00
parent 68122f8134
commit 7a5c2d5f75

View File

@ -153,7 +153,7 @@ static void test_modes(GLFWvidmode* modes, int count)
glfwGetWindowSize(window, &width, &height); glfwGetWindowSize(window, &width, &height);
if (width != modes[i].width || height != height) if (width != modes[i].width || height != modes[i].height)
{ {
printf("*** Size mismatch: %ix%i instead of %ix%i\n", printf("*** Size mismatch: %ix%i instead of %ix%i\n",
width, height, width, height,