diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-08 07:10:17 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-08 07:10:17 -0500 |
commit | 95b99429b885487074be18ef525954910ee810ac (patch) | |
tree | c6db432cefc6350081fd8f81f6e490e6224a2402 | |
parent | 20012cac5334e5bc24374c6865cb399a7594e307 (diff) | |
download | swaybg-95b99429b885487074be18ef525954910ee810ac.tar.gz swaybg-95b99429b885487074be18ef525954910ee810ac.tar.bz2 |
Style enforcement
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ int main(int argc, const char **argv) { if (!pixbuf) { sway_abort("Failed to load background image."); } - cairo_surface_t *image=__gdk_cairo_image_surface_create_from_pixbuf(pixbuf); + cairo_surface_t *image = __gdk_cairo_image_surface_create_from_pixbuf(pixbuf); g_object_unref(pixbuf); if (!image) { sway_abort("Failed to read background image."); |