Browse Source

Minor style fixup

Zachary Lund 11 years ago
parent
commit
fee0d9a8f3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libobs-opengl/gl-subsystem.c

+ 2 - 2
libobs-opengl/gl-subsystem.c

@@ -69,9 +69,9 @@ static void gl_enable_debug()
 
 	if (GLEW_VERSION_4_0)
 		glDebugMessageCallback(gl_debug_proc, NULL);
-	else if (GLEW_ARB_debug_output) {
+	else if (GLEW_ARB_debug_output) 
 		glDebugMessageCallbackARB(gl_debug_proc, NULL);
-	} else {
+	else {
 		blog(LOG_DEBUG, "Failed to set GL debug callback as it is not supported.");
 		return;
 	}