From 8e6991173bcf4e91a7aeee1a3aefdade2a7bb04b Mon Sep 17 00:00:00 2001 From: Constantin Baranov Date: Sun, 13 Oct 2013 01:17:15 +0300 Subject: [PATCH] mesa: Add missing switch break --- src/mesa/main/fbobject.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 1034c7a..9dd7161 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -3585,6 +3585,7 @@ invalidate_framebuffer_storage(GLenum target, GLsizei numAttachments, "%s(attachment >= max. color attachments)", name); return; } + break; } default: goto invalid_enum; -- 1.8.3.2