From 331b0120d16445dd8d5b8d049946ae7845fb714b Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 11 Nov 2014 10:20:49 +0000 Subject: mesa: Use unreachable instead of assert in check_valid_to_render This is generally the prefered style these days. Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke --- src/mesa/main/api_validate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main/api_validate.c') diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index 181a61d..304d576 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -113,7 +113,7 @@ check_valid_to_render(struct gl_context *ctx, const char *function) break; default: - assert(!"Invalid API value in check_valid_to_render()"); + unreachable("Invalid API value in check_valid_to_render()"); } return GL_TRUE; -- cgit v1.1