From: Brian Paul Date: Wed, 21 Sep 2022 17:30:13 +0000 (-0600) Subject: llvmpipe: asst. clean-ups in lp_state_tess.c X-Git-Tag: upstream/22.3.5~1026 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b96151cd3cf6af124103c4160e3055c2db252dcd;p=platform%2Fupstream%2Fmesa.git llvmpipe: asst. clean-ups in lp_state_tess.c Signed-off-by: Brian Paul Part-of: --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_tess.c b/src/gallium/drivers/llvmpipe/lp_state_tess.c index 28cc125..1c82577 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_tess.c +++ b/src/gallium/drivers/llvmpipe/lp_state_tess.c @@ -68,7 +68,7 @@ llvmpipe_create_tcs_state(struct pipe_context *pipe, return state; no_dgs: - FREE( state ); + FREE(state); no_state: return NULL; } @@ -136,7 +136,7 @@ llvmpipe_create_tes_state(struct pipe_context *pipe, return state; no_dgs: - FREE( state ); + FREE(state); no_state: return NULL; }