Browse Source

Removed superfluous cast.

Camilla Berglund 11 năm trước cách đây
mục cha
commit
5b5717e539
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);