From d3e288cc4d2b70e797acc14f6b3f6e20478ab741 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Fri, 22 Jul 2016 18:13:28 +0200 Subject: [PATCH] Fix glfwinfo not accepting -c option --- tests/glfwinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/glfwinfo.c b/tests/glfwinfo.c index aa8b6903..a3e286ff 100644 --- a/tests/glfwinfo.c +++ b/tests/glfwinfo.c @@ -412,7 +412,7 @@ int main(int argc, char** argv) if (!glfwInit()) exit(EXIT_FAILURE); - while ((ch = getopt_long(argc, argv, "a:b:dfhlm:n:p:s:v", options, NULL)) != -1) + while ((ch = getopt_long(argc, argv, "a:b:c:dfhlm:n:p:s:v", options, NULL)) != -1) { switch (ch) {