From 4c1664ff086fcb9fdb7e463d78252d1fbe5e1d5e Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Tue, 9 May 2017 12:36:35 +1000 Subject: [PATCH] mesa: replace _mesa_problem() with unreachable() in _mesa_light() All drivers but the old nouveau dri driver return after this anyway. Reviewed-by: Samuel Pitoiset --- src/mesa/main/light.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index 87a06db309d..245692a54c2 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -186,8 +186,7 @@ _mesa_light(struct gl_context *ctx, GLuint lnum, GLenum pname, const GLfloat *pa light->QuadraticAttenuation = params[0]; break; default: - _mesa_problem(ctx, "Unexpected pname in _mesa_light()"); - return; + unreachable("Unexpected pname in _mesa_light()"); } if (ctx->Driver.Lightfv) -- 2.30.2