diff options
author | José Fonseca <[email protected]> | 2010-06-02 19:59:28 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-06-02 20:00:30 +0100 |
commit | 92cbbba7fb5bdf7ba9147dcd5f4d22789889f1e5 (patch) | |
tree | f92c61df0275f44267bc1effce0ca6180674916e /src/gallium/drivers/llvmpipe/lp_bld_interp.c | |
parent | ead58101f91e82279b25676dfe822120be611995 (diff) |
llvmpipe: Fix typo in assert.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_interp.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |