From b96151cd3cf6af124103c4160e3055c2db252dcd Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 21 Sep 2022 11:30:13 -0600 Subject: [PATCH] llvmpipe: asst. clean-ups in lp_state_tess.c Signed-off-by: Brian Paul Part-of: --- src/gallium/drivers/llvmpipe/lp_state_tess.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_state_tess.c b/src/gallium/drivers/llvmpipe/lp_state_tess.c index 28cc1258b7a..1c825778fd1 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; }