summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2017-03-26 13:17:21 +0200
committerMatthias Clasen <mclasen@redhat.com>2017-03-26 13:17:37 +0200
commitf0badf75bdd031eda19758ca183c2eea3a8d29b8 (patch)
tree0c8e1de8aa8c7d27d16ed3af0d473d08d8e6b430
parent851649149b614f4f264dc2d34f6865573f5eebb9 (diff)
downloadgdk-pixbuf-f0badf75bdd031eda19758ca183c2eea3a8d29b8.tar.gz
Avoid a compiler warning
-rw-r--r--gdk-pixbuf/pixops/pixops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/pixops/pixops.c b/gdk-pixbuf/pixops/pixops.c
index f91f0e339..f6535f1f3 100644
--- a/gdk-pixbuf/pixops/pixops.c
+++ b/gdk-pixbuf/pixops/pixops.c
@@ -1794,6 +1794,8 @@ need_to_prescale (double scale_x,
case PIXOPS_INTERP_NEAREST:
/* Doesn't need the optimization */
return FALSE;
+ default:
+ g_assert_not_reached ();
}
/* Limit the number of filters created by make_filter_table(). */