From 5b5717e539f7ce36e7460eed69776757f1e99c20 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 24 Mar 2014 13:31:01 +0100 Subject: [PATCH] Removed superfluous cast. --- tests/threads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/threads.c b/tests/threads.c index f4fcdd9b..75fa8802 100644 --- a/tests/threads.c +++ b/tests/threads.c @@ -53,7 +53,7 @@ static void error_callback(int error, const char* description) static int thread_main(void* data) { - const Thread* thread = (const Thread*) data; + const Thread* thread = data; glfwMakeContextCurrent(thread->window); glfwSwapInterval(1);