From 636cbe5a191cf8065facfbe45f32620cea2009a5 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 15 May 2006 10:14:39 -0700 Subject: [PATCH] pixman: Add default case to quiet compiler warning --- pixman/src/fbpict.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pixman/src/fbpict.c b/pixman/src/fbpict.c index a09174009..89a2a399d 100644 --- a/pixman/src/fbpict.c +++ b/pixman/src/fbpict.c @@ -1816,6 +1816,9 @@ pixman_composite (pixman_operator_t op, } } break; + default: + /* For any operator not specifically handled above we default out to the general code. */ + func = NULL; } if (!func) {