diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cairotwisted.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cairotwisted.c b/examples/cairotwisted.c index d2d1cd30..1572c89a 100644 --- a/examples/cairotwisted.c +++ b/examples/cairotwisted.c @@ -234,7 +234,7 @@ parametrize_path (cairo_path_t *path) case CAIRO_PATH_CLOSE_PATH: /* Make it look like it's a line_to to last_move_to */ data = (&last_move_to) - 1; - /* fall through */ + G_GNUC_FALLTHROUGH; case CAIRO_PATH_LINE_TO: parametrization[i] = two_points_distance (¤t_point, &data[1]); current_point = data[1]; @@ -361,7 +361,7 @@ point_on_path (parametrized_path_t *param, case CAIRO_PATH_CLOSE_PATH: /* Make it look like it's a line_to to last_move_to */ data = (&last_move_to) - 1; - /* fall through */ + G_GNUC_FALLTHROUGH; case CAIRO_PATH_LINE_TO: { ratio = the_x / parametrization[i]; |