pixman: Add default case to quiet compiler warning

This commit is contained in:
Carl Worth 2006-05-15 10:14:39 -07:00
parent 2e4c8924ad
commit 636cbe5a19

View file

@ -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) {