From 16e80258b8f5d540c75e47273247a5c37bc9e1a5 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 7 Apr 2015 17:42:45 +0200 Subject: [PATCH] Shrunk error message buffer. This fixes a VC++ static analysis warning. --- src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.c b/src/init.c index 4a044ed0..265c2d85 100644 --- a/src/init.c +++ b/src/init.c @@ -86,7 +86,7 @@ void _glfwInputError(int error, const char* format, ...) { if (_glfwErrorCallback) { - char buffer[16384]; + char buffer[8192]; const char* description; if (format)