Fix format-security error in rlgl_standalone.c

See #1304
This commit is contained in:
Daniel Jour 2020-07-10 00:49:55 +02:00 committed by GitHub
parent 871cd1a76a
commit 7deb693345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -219,7 +219,7 @@ int main(void)
// GLFW3: Error callback
static void ErrorCallback(int error, const char *description)
{
fprintf(stderr, description);
fprintf(stderr, "%s", description);
}
// GLFW3: Keyboard callback