Fix format-security error in rlgl_standalone.c (#1305)

See #1304
This commit is contained in:
Daniel Jour 2020-07-10 11:17:46 +02:00 committed by GitHub
parent 871cd1a76a
commit 2d4956feeb
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 // GLFW3: Error callback
static void ErrorCallback(int error, const char *description) static void ErrorCallback(int error, const char *description)
{ {
fprintf(stderr, description); fprintf(stderr, "%s", description);
} }
// GLFW3: Keyboard callback // GLFW3: Keyboard callback