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/lexmark_low.c | |
parent | bfa2ae8e43fcbab696f272fffd164d0637e965c5 (diff) |
New upstream version 1.4.0upstream/1.4.0upstream
Diffstat (limited to 'backend/lexmark_low.c')
-rw-r--r-- | backend/lexmark_low.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/lexmark_low.c b/backend/lexmark_low.c index 246455f..a0237c7 100644 --- a/backend/lexmark_low.c +++ b/backend/lexmark_low.c @@ -2497,7 +2497,7 @@ sanei_lexmark_low_find_start_line (Lexmark_Device * dev) */ - int blackLineCount = 0; +// int blackLineCount = 0; int whiteLineCount = 0; int blackByteCounter = 0; unsigned char max_byte = 0; @@ -2838,14 +2838,14 @@ sanei_lexmark_low_find_start_line (Lexmark_Device * dev) if (blackByteCounter > 0) { /* This was a black line */ - blackLineCount++; +// blackLineCount++; whiteLineCount = 0; } else { /* This is a white line */ whiteLineCount++; - blackLineCount = 0; +// blackLineCount = 0; } } /* end for buffer */ |