From c7b86ab97be1d3d3ccf43b652832f148a2fcf290 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Tue, 10 Apr 2012 22:34:05 +0930 Subject: [PATCH] any2ppm: fix missing enumeration warning --- test/any2ppm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/any2ppm.c b/test/any2ppm.c index 6b61c4733..240334775 100644 --- a/test/any2ppm.c +++ b/test/any2ppm.c @@ -193,6 +193,7 @@ write_ppm (cairo_surface_t *surface, int fd) break; case CAIRO_FORMAT_A1: case CAIRO_FORMAT_RGB16_565: + case CAIRO_FORMAT_RGB30: case CAIRO_FORMAT_INVALID: default: return "unhandled image format";