diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:29 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:29 +0200 |
commit | 652efae78c00b812033ea162d76cd13bd40dcab6 (patch) | |
tree | 7c139f4d2a28061607cd7e2269693df993e5d60a /backend/hp3900_config.c | |
parent | bfa2ae8e43fcbab696f272fffd164d0637e965c5 (diff) |
New upstream version 1.4.0upstream/1.4.0upstream
Diffstat (limited to 'backend/hp3900_config.c')
-rw-r--r-- | backend/hp3900_config.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backend/hp3900_config.c b/backend/hp3900_config.c index c40920f..9f64d31 100644 --- a/backend/hp3900_config.c +++ b/backend/hp3900_config.c @@ -3813,7 +3813,7 @@ static SANE_Int cfg_timing_get(SANE_Int sensortype, SANE_Int tm, struct st_timin /** SEC: Motor curves ---------- */ -static SANE_Int *bq5550_motor() +static SANE_Int *bq5550_motor(void) { SANE_Int *rst = NULL; SANE_Int steps[] = @@ -3835,7 +3835,7 @@ static SANE_Int *bq5550_motor() return rst; } -static SANE_Int *hp4370_motor() +static SANE_Int *hp4370_motor(void) { SANE_Int *rst = NULL; SANE_Int steps[] = @@ -3936,7 +3936,7 @@ static SANE_Int *hp4370_motor() return rst; } -static SANE_Int *hp3970_motor() +static SANE_Int *hp3970_motor(void) { SANE_Int *rst = NULL; SANE_Int steps[] = @@ -4037,7 +4037,7 @@ static SANE_Int *hp3970_motor() return rst; } -static SANE_Int *hp3800_motor() +static SANE_Int *hp3800_motor(void) { SANE_Int *rst = NULL; SANE_Int steps[] = @@ -4182,7 +4182,7 @@ static SANE_Int *hp3800_motor() return rst; } -static SANE_Int *cfg_motorcurve_get() +static SANE_Int *cfg_motorcurve_get(void) { /* returns motor setting buffer for a device */ |