---
 src/mesa/main/accum.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c
index d81e1ba..c0a3e7e 100644
--- a/src/mesa/main/accum.c
+++ b/src/mesa/main/accum.c
@@ -419,21 +419,21 @@ accum(struct gl_context *ctx, GLenum op, GLfloat value)
          accum_or_load(ctx, value, xpos, ypos, width, height, GL_FALSE);
       }
       break;
    case GL_LOAD:
       accum_or_load(ctx, value, xpos, ypos, width, height, GL_TRUE);
       break;
    case GL_RETURN:
       accum_return(ctx, value, xpos, ypos, width, height);
       break;
    default:
-      _mesa_problem(ctx, "invalid mode in _mesa_Accum()");
+      unreachable("invalid mode in _mesa_Accum()");
       break;
    }
 }
 
 
 void 
 _mesa_init_accum( struct gl_context *ctx )
 {
    /* Accumulate buffer group */
    ASSIGN_4V( ctx->Accum.ClearColor, 0.0, 0.0, 0.0, 0.0 );
-- 
2.9.3

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to