From: José Fonseca Date: Wed, 2 Jun 2010 18:59:28 +0000 (+0100) Subject: llvmpipe: Fix typo in assert. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=92cbbba7fb5bdf7ba9147dcd5f4d22789889f1e5;p=mesa.git llvmpipe: Fix typo in assert. --- diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.c b/src/gallium/drivers/llvmpipe/lp_bld_interp.c index e73733e51c4..957866e489c 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_interp.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.c @@ -340,7 +340,7 @@ lp_build_interp_soa_init(struct lp_build_interp_soa_context *bld, coeff_type.length = QUAD_SIZE; /* XXX: we don't support interpolating into any other types */ - assert(memcmp(&coeff_type, &type, sizeof &coeff_type) == 0); + assert(memcmp(&coeff_type, &type, sizeof coeff_type) == 0); lp_build_context_init(&bld->coeff_bld, builder, coeff_type);