From 2447e93bf8f4246dc756e1d05fab73e74a927525 Mon Sep 17 00:00:00 2001 From: Karl Heinz Kremer Date: Sun, 19 Nov 2000 22:28:05 +0000 Subject: [PATCH] Removed a debug statement from production code --- backend/epson.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/epson.c b/backend/epson.c index 15493b403..2bd5e2d7e 100644 --- a/backend/epson.c +++ b/backend/epson.c @@ -1726,7 +1726,7 @@ static SANE_Status attach ( const char * dev_name, Epson_Device * * devp) { if (request_focus_position(s, &s->currentFocusPosition) == SANE_STATUS_GOOD) { - DBG( 0, "Enabling 'Set Focus' support\n"); + DBG( 1, "Enabling 'Set Focus' support\n"); s->hw->focusSupport = SANE_TRUE; s->opt[ OPT_FOCUS].cap &= ~SANE_CAP_INACTIVE; @@ -1745,7 +1745,7 @@ static SANE_Status attach ( const char * dev_name, Epson_Device * * devp) { } else { - DBG( 0, "Disabling 'Set Focus' support\n"); + DBG( 1, "Disabling 'Set Focus' support\n"); s->hw->focusSupport = SANE_FALSE; s->opt[ OPT_FOCUS].cap |= SANE_CAP_INACTIVE; }