浏览代码

Removed superfluous cast.

Camilla Berglund 11 年之前
父节点
当前提交
5b5717e539
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/threads.c

+ 1 - 1
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);