summaryrefslogtreecommitdiff
path: root/camlibs
diff options
context:
space:
mode:
authorLi kunyu <kunyu@nfschina.com>2022-11-07 10:33:24 +0800
committerHans Ulrich Niedermann <hun@n-dimensional.de>2022-11-07 11:40:38 +0100
commitba753c8a2d1caac9c394101c084aeccbce7df9d5 (patch)
tree85934fd6df6c4a3605a413deb735a8c6ca5f8ff5 /camlibs
parent13b6d6b65e5e7d636404df987c1fe095c5575ffa (diff)
downloadlibgphoto2-ba753c8a2d1caac9c394101c084aeccbce7df9d5.tar.gz
docupen: Remove redundant semicolons
Signed-off-by: Li kunyu <kunyu@nfschina.com>
Diffstat (limited to 'camlibs')
-rw-r--r--camlibs/docupen/docupen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/camlibs/docupen/docupen.c b/camlibs/docupen/docupen.c
index 762c29cf9..15e456924 100644
--- a/camlibs/docupen/docupen.c
+++ b/camlibs/docupen/docupen.c
@@ -283,7 +283,7 @@ camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
if (!strcmp(value, _("200 DPI")))
camera->pl->profile[0x82] = RES_200DPI;
else if (!strcmp(value, _("400 DPI")))
- camera->pl->profile[0x82] = RES_400DPI;;
+ camera->pl->profile[0x82] = RES_400DPI;
}
gp_widget_get_child_by_label (window, _("Color Document mode"), &section);
@@ -302,7 +302,7 @@ camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
if (!strcmp(value, _("100 DPI")))
camera->pl->profile[0x84] = RES_100DPI;
else if (!strcmp(value, _("200 DPI")))
- camera->pl->profile[0x84] = RES_200DPI;;
+ camera->pl->profile[0x84] = RES_200DPI;
}
gp_widget_get_child_by_label (section, _("Hi Resolution"), &widget);
@@ -312,7 +312,7 @@ camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
if (!strcmp(value, _("200 DPI")))
camera->pl->profile[0x85] = RES_200DPI;
else if (!strcmp(value, _("400 DPI")))
- camera->pl->profile[0x85] = RES_400DPI;;
+ camera->pl->profile[0x85] = RES_400DPI;
}
gp_widget_get_child_by_label (window, _("Color Photo mode"), &section);
@@ -331,7 +331,7 @@ camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
if (!strcmp(value, _("100 DPI")))
camera->pl->profile[0x87] = RES_100DPI;
else if (!strcmp(value, _("200 DPI")))
- camera->pl->profile[0x87] = RES_200DPI;;
+ camera->pl->profile[0x87] = RES_200DPI;
}
gp_widget_get_child_by_label (section, _("Hi Resolution"), &widget);
@@ -341,7 +341,7 @@ camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
if (!strcmp(value, _("200 DPI")))
camera->pl->profile[0x88] = RES_200DPI;
else if (!strcmp(value, _("400 DPI")))
- camera->pl->profile[0x88] = RES_400DPI;;
+ camera->pl->profile[0x88] = RES_400DPI;
}
if (!dp_set_profile(camera))