From ba753c8a2d1caac9c394101c084aeccbce7df9d5 Mon Sep 17 00:00:00 2001 From: Li kunyu Date: Mon, 7 Nov 2022 10:33:24 +0800 Subject: docupen: Remove redundant semicolons Signed-off-by: Li kunyu --- camlibs/docupen/docupen.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'camlibs') 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"), §ion); @@ -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"), §ion); @@ -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)) -- cgit v1.2.1