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>2016-03-04 08:38:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-04 08:38:41 +0300
commitb8417501abefa3332254564078ac7b93b875d7b8 (patch)
tree2e4a3c581c3a6501ea9a1312547918d3ec8b5827 /intern/ghost
parent4ec61ff9f62ffe6ad26bba8a9c5f1250b9d464e8 (diff)
Cleanup: suspicious use of commas
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_WindowX11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowX11.cpp b/intern/ghost/intern/GHOST_WindowX11.cpp
index 86ea86d25fc..e68e0901dab 100644
--- a/intern/ghost/intern/GHOST_WindowX11.cpp
+++ b/intern/ghost/intern/GHOST_WindowX11.cpp
@@ -1104,7 +1104,7 @@ setOrder(
xev.xclient.data.l[3] = 0;
xev.xclient.data.l[4] = 0;
- root = RootWindow(m_display, m_visualInfo->screen),
+ root = RootWindow(m_display, m_visualInfo->screen);
eventmask = SubstructureRedirectMask | SubstructureNotifyMask;
XSendEvent(m_display, root, False, eventmask, &xev);