From f698711ddc0c45523cdc1a4e746a1319afd72e26 Mon Sep 17 00:00:00 2001 From: Ian Fan Date: Wed, 23 Jan 2019 12:18:22 +0000 Subject: [PATCH] background-image.c: remove stdbool header --- background-image.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/background-image.c b/background-image.c index d2ab03b..c765bdf 100644 --- a/background-image.c +++ b/background-image.c @@ -1,5 +1,4 @@ #include -#include #include "background-image.h" #include "cairo.h" #include "log.h" @@ -30,7 +29,7 @@ cairo_surface_t *load_background_image(const char *path) { if (!pixbuf) { swaylock_log(LOG_ERROR, "Failed to load background image (%s).", err->message); - return false; + return NULL; } image = gdk_cairo_image_surface_create_from_pixbuf(pixbuf); g_object_unref(pixbuf);