Shrunk error message buffer.

This fixes a VC++ static analysis warning.
master
Camilla Berglund ago%!(EXTRA string=10 years)
parent b875bbcdf1
commit 16e80258b8
  1. 2
      src/init.c

@ -86,7 +86,7 @@ void _glfwInputError(int error, const char* format, ...)
{ {
if (_glfwErrorCallback) if (_glfwErrorCallback)
{ {
char buffer[16384]; char buffer[8192];
const char* description; const char* description;
if (format) if (format)

Loading…
Cancel
Save