diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:53 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 14:27:53 +0200 |
commit | 115d2beab18fae48374bb3dc8603a0c48df58ce1 (patch) | |
tree | 7e1920e7f69782aec0d4813963c3601d62a757c1 /backend/hp3900_config.c | |
parent | a0fd2a8557d28ec8e7bbf881f78daf7e8e8fbd6b (diff) | |
parent | 1f3f1e7d112f051f22fe7fc82739b483cef09b2a (diff) |
Merge branch 'feature/upstream' into developdevelop
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 */ |