From: Timothy Arceri Date: Tue, 9 May 2017 02:36:35 +0000 (+1000) Subject: mesa: replace _mesa_problem() with unreachable() in _mesa_light() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c1664ff086fcb9fdb7e463d78252d1fbe5e1d5e;p=mesa.git 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 --- 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)