summaryrefslogtreecommitdiff
path: root/src/cairo-path-fixed.c
diff options
context:
space:
mode:
authorGeorge Matsumura <gmmatsumura01@bvsd.org>2020-08-31 22:14:59 -0600
committerGeorge Matsumura <gmmatsumura01@bvsd.org>2020-11-07 06:45:01 -0700
commited98414686ede45a4f2302b4521dece51acdb785 (patch)
tree578ed64ae1ab3538a3cb5130587075e81f9acc49 /src/cairo-path-fixed.c
parent618b13c436636149bb1c611a9f4a422f60c6476d (diff)
downloadcairo-ed98414686ede45a4f2302b4521dece51acdb785.tar.gz
build: Fix various compiler warnings
This fixes a few compiler warnings that were encountered with gcc 9.3.0. Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>
Diffstat (limited to 'src/cairo-path-fixed.c')
-rw-r--r--src/cairo-path-fixed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path-fixed.c b/src/cairo-path-fixed.c
index 9e9166cbd..d74182346 100644
--- a/src/cairo-path-fixed.c
+++ b/src/cairo-path-fixed.c
@@ -1516,7 +1516,7 @@ _cairo_path_fixed_iter_is_fill_box (cairo_path_fixed_iter_t *_iter,
/* a horizontal/vertical closed line is also a degenerate rectangle */
switch (iter.buf->op[iter.n_op]) {
case CAIRO_PATH_OP_CLOSE_PATH:
- _cairo_path_fixed_iter_next_op (&iter);
+ _cairo_path_fixed_iter_next_op (&iter); /* fall through */
case CAIRO_PATH_OP_MOVE_TO: /* implicit close */
box->p1 = box->p2 = points[0];
*_iter = iter;