From 9dcd29bef48071fcc28f5fa93d6369dfc1eed3da Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Fri, 18 Feb 2011 18:53:29 +0100 Subject: [PATCH] test: Add missing format to any2ppm to silence gcc --- test/any2ppm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/any2ppm.c b/test/any2ppm.c index b4c9de6fe..40c304b73 100644 --- a/test/any2ppm.c +++ b/test/any2ppm.c @@ -191,6 +191,7 @@ write_ppm (cairo_surface_t *surface, int fd) format_str = "P5"; break; case CAIRO_FORMAT_A1: + case CAIRO_FORMAT_RGB16_565: case CAIRO_FORMAT_INVALID: default: return "unhandled image format";