Corrects an error in a debug message

* This happened during the last edit.
This commit is contained in:
Yvan da Silva 2018-07-28 22:48:00 +02:00 committed by Geoffrey McRae
parent 29f1d6cd42
commit 0674e04597

View File

@ -737,7 +737,7 @@ int run()
DEBUG_INFO("Wayland detected");
int err = setenv("SDL_VIDEODRIVER", "wayland", 1);
if (err < 0) {
DEBUG_ERROR("Unable to set the env variable SDL_VIDEODRIVER: %d", errno);
DEBUG_ERROR("Unable to set the env variable SDL_VIDEODRIVER: %d", err);
return -1;
}
DEBUG_INFO("SDL_VIDEODRIVER has been set to wayland");
@ -1654,4 +1654,4 @@ int main(int argc, char * argv[])
}
return ret;
}
}