From: Edward O'Callaghan Date: Sat, 26 Mar 2016 07:35:06 +0000 (+1100) Subject: radeon/r600: Fix return type in failure branch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca22d2f1fdb09e9b77394bc88418251034d344b5;p=mesa.git radeon/r600: Fix return type in failure branch Commit `d4e847ea` introduced a warning about making an integer from a pointer without a cast, fix it here. Signed-off-by: Edward O'Callaghan Signed-off-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c index 7322f3ee985..83fc0021227 100644 --- a/src/gallium/drivers/radeon/r600_texture.c +++ b/src/gallium/drivers/radeon/r600_texture.c @@ -335,7 +335,7 @@ static boolean r600_texture_get_handle(struct pipe_screen* screen, */ if (resource->target != PIPE_BUFFER && (resource->nr_samples > 1 || rtex->is_depth)) - return NULL; + return false; if (!res->is_shared) { res->is_shared = true;