From 41b1f6c7c4792e1d5de0bf7a1f97b78747abb22e Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Thu, 3 Mar 2016 08:13:03 +0000 Subject: [PATCH] trivial: Fix tiny build warning with GCC6 --- libdfu/dfu-target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdfu/dfu-target.c b/libdfu/dfu-target.c index 7ae57b17a..6feb32c4c 100644 --- a/libdfu/dfu-target.c +++ b/libdfu/dfu-target.c @@ -1384,7 +1384,7 @@ dfu_target_download (DfuTarget *target, DfuImage *image, /* ensure populated */ if (!dfu_target_setup (target, error)) - return NULL; + return FALSE; /* can the target do this? */ if (!dfu_device_can_download (priv->device)) {