diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-03-30 21:30:45 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-03-30 21:30:45 +0200 |
commit | ee770c2346eb37e0dcb8b6cf3eaacf3d8efd6bbc (patch) | |
tree | 58f05092be1a17a939e861f8cadcda1b6ca2ecef /backend/pnm.c | |
parent | 0da9e21872802cfc6e975b1ebaf9efb9e5934d84 (diff) | |
parent | fef76e17ed4c607ea73b81279f9ef1d7121be900 (diff) |
Merge branch 'release/experimental/1.0.29-1_experimental1'experimental/1.0.29-1_experimental1
Diffstat (limited to 'backend/pnm.c')
-rw-r--r-- | backend/pnm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/pnm.c b/backend/pnm.c index ff4e2f2..1d1f4fd 100644 --- a/backend/pnm.c +++ b/backend/pnm.c @@ -2,7 +2,7 @@ Copyright (C) 1996, 1997 Andreas Beck Copyright (C) 2000, 2001 Michael Herder <crapsite@gmx.net> Copyright (C) 2001, 2002 Henning Meier-Geinitz <henning@meier-geinitz.de> - Copyright (C) 2008 Stéphane Voltz <stef.dev@free.fr> + Copyright (C) 2008 Stéphane Voltz <stef.dev@free.fr> This file is part of the SANE package. This program is free software; you can redistribute it and/or @@ -106,9 +106,9 @@ static const SANE_Word resbit_list[] = { 200, 210, 225, 240, 255, 270, 285, 300 }; static const SANE_Range percentage_range = { - -100 << SANE_FIXED_SCALE_SHIFT, /* minimum */ - 100 << SANE_FIXED_SCALE_SHIFT, /* maximum */ - 0 << SANE_FIXED_SCALE_SHIFT /* quantization */ + SANE_FIX(-100), /* minimum */ + SANE_FIX(100), /* maximum */ + SANE_FIX(0) /* quantization */ }; static const SANE_Range gamma_range = { 0, /* minimum */ |