summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-02-12 08:03:01 -0500
committerMatthias Clasen <mclasen@redhat.com>2022-02-12 08:03:01 -0500
commit45e2505f686f6712f8291ff11c488ea0e13e1314 (patch)
treeacd437fb0535e473622ceaa9a85cf60e0da8428e
parentbcf61fc3a0c30da173c8629d1458fe3440288878 (diff)
downloadpango-45e2505f686f6712f8291ff11c488ea0e13e1314.tar.gz
pango-view: Fix compiler warnings
-rw-r--r--utils/viewer-render.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/viewer-render.c b/utils/viewer-render.c
index 8816f06f..d5ca5e3e 100644
--- a/utils/viewer-render.c
+++ b/utils/viewer-render.c
@@ -709,6 +709,7 @@ parse_margin (const char *name G_GNUC_UNUSED,
{
switch (sscanf (arg, "%d%*[ ,]%d%*[ ,]%d%*[ ,]%d", &opt_margin_t, &opt_margin_r, &opt_margin_b, &opt_margin_l))
{
+ default:
case 0:
{
g_set_error(error,
@@ -718,7 +719,9 @@ parse_margin (const char *name G_GNUC_UNUSED,
return FALSE;
}
case 1: opt_margin_r = opt_margin_t;
+ G_GNUC_FALLTHROUGH;
case 2: opt_margin_b = opt_margin_t;
+ G_GNUC_FALLTHROUGH;
case 3: opt_margin_l = opt_margin_r;
}
return TRUE;