diff options
author | Matthias Clasen <mclasen@redhat.com> | 2022-06-10 17:22:40 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2022-06-10 17:24:39 -0400 |
commit | ed2279cd6a8c835ce9676cbd1eb9b868a6ca25ab (patch) | |
tree | 3bb6a21a72281331a63616409c428758d2410e20 | |
parent | c3525aecf0b9885ba6c36accc3f955c6ffcf0876 (diff) | |
download | pango-ed2279cd6a8c835ce9676cbd1eb9b868a6ca25ab.tar.gz |
cairotwisted: Fix a compiler warning
-rw-r--r-- | examples/cairotwisted.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/cairotwisted.c b/examples/cairotwisted.c index 1572c89a..6d1dadac 100644 --- a/examples/cairotwisted.c +++ b/examples/cairotwisted.c @@ -278,6 +278,7 @@ transform_path (cairo_path_t *path, transform_point_func_t f, void *closure) case CAIRO_PATH_CURVE_TO: f (closure, &data[3].point.x, &data[3].point.y); f (closure, &data[2].point.x, &data[2].point.y); + G_GNUC_FALLTHROUGH; case CAIRO_PATH_MOVE_TO: case CAIRO_PATH_LINE_TO: f (closure, &data[1].point.x, &data[1].point.y); |