summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;