diff options
author | Jonathan Bauer | 2019-06-03 13:18:30 +0200 |
---|---|---|
committer | Jonathan Bauer | 2019-06-03 13:18:30 +0200 |
commit | 0e0ad264285b8a3958c1b88e446505dea91dcca5 (patch) | |
tree | 5f33231e0df3b81a81c77bd8743fbbf951de2647 | |
parent | Add news panel to the right of the login form (diff) | |
download | slxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.tar.gz slxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.tar.xz slxgreeter-0e0ad264285b8a3958c1b88e446505dea91dcca5.zip |
fix indentation
-rw-r--r-- | src/x11util.cpp | 2 |
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; |