Fixed bug in fix_line_distance_block that resulted in too much data transfered

to the frontend. New version: 1.0-110.
Henning Meier-Geinitz <henning@meier-geinitz.de>
DEVEL_2_0_BRANCH-1
Henning Geinitz 2001-07-11 21:41:28 +00:00
rodzic ac8cebc179
commit 2f82f4fdf8
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -9,7 +9,7 @@
;
:backend "mustek" ; name of backend
:version "1.0-109" ; version of backend
:version "1.0-110" ; version of backend
:status :stable ; :alpha, :beta, :stable, :new
:manpage "sane-mustek" ; name of manpage (if it exists)
:url "http://www.meier-geinitz.de/sane/"

Wyświetl plik

@ -273,6 +273,8 @@ typedef struct Mustek_Scanner
pid_t reader_pid; /* process id of reader */
int pipe; /* pipe to reader process */
long start_time; /* at this time the scan started */
SANE_Word total_bytes; /* bytes transmitted by sane_read */
SANE_Word total_lines; /* lines transmitted to sane_read pipe */
/* scanner dependent/low-level state: */
Mustek_Device *hw;