diff options
Diffstat (limited to 'backend/hp4200.c')
| -rw-r--r-- | backend/hp4200.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/backend/hp4200.c b/backend/hp4200.c index c080fcb..5b21b47 100644 --- a/backend/hp4200.c +++ b/backend/hp4200.c @@ -1497,7 +1497,7 @@ do_fine_calibration (HP4200_Scanner * s, struct coarse_t *coarse)      int i;      for (i = 0; i < 12; i++)        { -        memset (registro[i], 0, 5460 * 3 * sizeof(registro[0])); +        memset (registro[i], 0, 5460 * 3 * sizeof(int));        }    } @@ -2375,12 +2375,12 @@ sane_init (SANE_Int * version_code, SANE_Auth_Callback authorize)    DBG (DBG_proc, "%s\n", me);    DBG (DBG_error, "SANE hp4200 backend version %d.%d build %d from %s\n", -       SANE_CURRENT_MAJOR, V_MINOR, BUILD, PACKAGE_STRING); +       SANE_CURRENT_MAJOR, SANE_CURRENT_MINOR, BUILD, PACKAGE_STRING);    /* put some version_code checks here */    if (NULL != version_code)      { -      *version_code = SANE_VERSION_CODE (SANE_CURRENT_MAJOR, V_MINOR, 0); +      *version_code = SANE_VERSION_CODE (SANE_CURRENT_MAJOR, SANE_CURRENT_MINOR, 0);      }    sanei_usb_init (); | 
