From f91492b7c128d1b808c5eadc303e436ccceaa670 Mon Sep 17 00:00:00 2001 From: "m. allan noah" Date: Mon, 29 Jun 2009 21:56:09 -0400 Subject: [PATCH] reduce default buffer size to 2 megs --- backend/canon_dr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/canon_dr.c b/backend/canon_dr.c index 53f7ff28e..6cdf24194 100644 --- a/backend/canon_dr.c +++ b/backend/canon_dr.c @@ -227,6 +227,8 @@ - cleanup canceling debug messages - remove old cancel() prototype - small sleep before clearing usb halt condition + v31 2009-06-29, MAN + - reduce default buffer size to 2 megs SANE FLOW DIAGRAM @@ -335,7 +337,7 @@ static const char string_Back[] = "Back"; /* Also set via config file. */ static int global_buffer_size; -static int global_buffer_size_default = 4 * 1024 * 1024; +static int global_buffer_size_default = 2 * 1024 * 1024; static int global_padded_read; static int global_padded_read_default = 0; static char global_vendor_name[9];