Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorChristian Rauch <christian.rauch>2020-04-27 08:27:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-27 08:27:18 +0300
commit54eb7019785505382df666c0975cae063463c69a (patch)
treebfbeffc9ab710befd39561effe0ae703527f33e1 /intern
parent490c32c425e7909b8351932857a448ac953131ac (diff)
Cleanup: add newline to ghost warning print
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_C-api.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}