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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-07-26 05:39:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-26 05:41:49 +0300
commit501bca9f5b1265e6f336bc7c1878b9b50a70356a (patch)
treec6f80868381a9ab8922b8d2033b988cd4a632f77 /intern/ghost
parent828c66f393232f99272122623cacf2266cccbfa2 (diff)
Cleanup: clang-format
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_ISystem.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/intern/ghost/intern/GHOST_ISystem.cpp b/intern/ghost/intern/GHOST_ISystem.cpp
index cb85edb728b..d1f5e2ba11d 100644
--- a/intern/ghost/intern/GHOST_ISystem.cpp
+++ b/intern/ghost/intern/GHOST_ISystem.cpp
@@ -58,9 +58,10 @@ GHOST_TSuccess GHOST_ISystem::createSystem()
try {
m_system = new GHOST_SystemWayland();
if (!std::getenv("BLENDER_WAYLAND")) {
- printf("Connected to a Wayland compositor but Wayland is disabled at "\
- "runtime.\nSet environment variable 'BLENDER_WAYLAND' (e.g. "\
- "BLENDER_WAYLAND= blender) to use Wayland.\n");
+ printf(
+ "Connected to a Wayland compositor but Wayland is disabled at runtime.\n"
+ "Set environment variable 'BLENDER_WAYLAND' "
+ "(e.g. BLENDER_WAYLAND= blender) to use Wayland.\n");
throw std::runtime_error(std::string());
}
}