summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2019-06-03 13:18:30 +0200
committerJonathan Bauer2019-06-03 13:18:30 +0200
commit0e0ad264285b8a3958c1b88e446505dea91dcca5 (patch)
tree5f33231e0df3b81a81c77bd8743fbbf951de2647
parentAdd news panel to the right of the login form (diff)
downloadslxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.tar.gz
slxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.tar.xz
slxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.zip
fix indentation
-rw-r--r--src/x11util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11util.cpp b/src/x11util.cpp
index c401b4f..d2c1229 100644
--- a/src/x11util.cpp
+++ b/src/x11util.cpp
@@ -36,7 +36,7 @@ void AddPixmapToBackground(unsigned const char* imgData, const unsigned int widt
memcpy(data, imgData, byteCount);
xi = XCreateImage(dpy, CopyFromParent, depth, ZPixmap, 0, data, width, height, 32, bytesPerLine);
if (xi == nullptr)
- goto cleanup;
+ goto cleanup;
pix = XCreatePixmap(dpy, root, width, height, (unsigned int)DefaultDepth(dpy, screen));
if (pix == 0)
goto cleanup;