diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2023-02-16 10:20:08 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2023-02-16 10:20:08 +0100 | 
| commit | 778ebf8ee9cb22ea5727844333bcd5a6ee6bc0de (patch) | |
| tree | a754e785b286ed82b45fe4e50b980714ad80e0a7 /backend/hp3900_sane.c | |
| parent | 7d8aac1f3634dc58785bec7acf097dd6bac8c394 (diff) | |
| parent | 32cb765f681299af226ca0520993cbe47ba5ecd0 (diff) | |
Merge branch 'release/debian/1.2.1-1'debian/1.2.1-1
Diffstat (limited to 'backend/hp3900_sane.c')
| -rw-r--r-- | backend/hp3900_sane.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/backend/hp3900_sane.c b/backend/hp3900_sane.c index eae99e0..5face5e 100644 --- a/backend/hp3900_sane.c +++ b/backend/hp3900_sane.c @@ -380,7 +380,7 @@ bknd_colormodes (TScanner * scanner, SANE_Int model)  	{ SANE_VALUE_SCAN_MODE_COLOR, SANE_VALUE_SCAN_MODE_GRAY, SANE_VALUE_SCAN_MODE_LINEART, 0 };        /* silence gcc */ -      model = model; +      (void) model;        colormode = (SANE_String_Const *) malloc (sizeof (mycolormode));        if (colormode != NULL) @@ -460,7 +460,7 @@ bknd_depths (TScanner * scanner, SANE_Int model)        SANE_Int mydepth[] = { 2, 8, 16 };	/*{3, 8, 12, 16}; */        /* silence gcc */ -      model = model; +      (void) model;        depth = (SANE_Int *) malloc (sizeof (mydepth));        if (depth != NULL) @@ -1760,7 +1760,7 @@ sane_init (SANE_Int * version_code, SANE_Auth_Callback authorize)    DBG (DBG_FNC, "> sane_init\n");    /* silence gcc */ -  authorize = authorize; +  (void) authorize;    /* Initialize usb */    sanei_usb_init (); @@ -1816,7 +1816,7 @@ sane_get_devices (const SANE_Device *** device_list, SANE_Bool local_only)  {    SANE_Status rst = SANE_STATUS_GOOD; -  local_only = local_only; +  (void) local_only;    if (_pSaneDevList)      free (_pSaneDevList); @@ -2654,7 +2654,7 @@ sane_cancel (SANE_Handle h)    DBG (DBG_FNC, "> sane_cancel\n");    /* silence gcc */ -  h = h; +  (void) h;    device->status->cancel = TRUE;  } @@ -2665,8 +2665,8 @@ sane_set_io_mode (SANE_Handle handle, SANE_Bool non_blocking)    DBG (DBG_FNC, "> sane_set_io_mode\n");    /* silence gcc */ -  handle = handle; -  non_blocking = non_blocking; +  (void) handle; +  (void) non_blocking;    return SANE_STATUS_UNSUPPORTED;  } @@ -2677,8 +2677,8 @@ sane_get_select_fd (SANE_Handle handle, SANE_Int * fd)    DBG (DBG_FNC, "> sane_get_select_fd\n");    /* silence gcc */ -  handle = handle; -  fd = fd; +  (void) handle; +  (void) fd;    return SANE_STATUS_UNSUPPORTED;  } | 
