[Bf-blender-cvs] [54eb7019785] master: Cleanup: add newline to ghost warning print

Christian Rauch noreply at git.blender.org
Mon Apr 27 07:30:31 CEST 2020


Commit: 54eb7019785505382df666c0975cae063463c69a
Author: Christian Rauch
Date:   Mon Apr 27 15:27:18 2020 +1000
Branches: master
https://developer.blender.org/rB54eb7019785505382df666c0975cae063463c69a

Cleanup: add newline to ghost warning print

===================================================================

M	intern/ghost/intern/GHOST_C-api.cpp

===================================================================

diff --git a/intern/ghost/intern/GHOST_C-api.cpp b/intern/ghost/intern/GHOST_C-api.cpp
index db9fd2e3bf9..1c95814f0d9 100644
--- a/intern/ghost/intern/GHOST_C-api.cpp
+++ b/intern/ghost/intern/GHOST_C-api.cpp
@@ -678,7 +678,7 @@ GHOST_TSuccess GHOST_ActivateOpenGLContext(GHOST_ContextHandle contexthandle)
     return context->activateDrawingContext();
   }
   else {
-    GHOST_PRINT("GHOST_ActivateOpenGLContext: Context not valid");
+    GHOST_PRINTF("%s: Context not valid\n", __func__);
     return GHOST_kFailure;
   }
 }



More information about the Bf-blender-cvs mailing list