From e86da220ddbb5368813ee84eca2034e9f125f24d Mon Sep 17 00:00:00 2001 From: Henning Geinitz Date: Sat, 7 Jan 2006 17:05:11 +0000 Subject: [PATCH] Print version information when detecting chip sets. --- ChangeLog | 2 ++ tools/check-usb-chip.c | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ccfebff16..da71b6425 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ * doc/descriptions-external/brother2.desc tools/hotplug/libsane.usermap: Brother DCP-7010 is reported to work (bug #302862). + * tools/check-usb-chip.c: Print version information when detecting + chip sets. 2006-01-06 Oliver Schwartz diff --git a/tools/check-usb-chip.c b/tools/check-usb-chip.c index 883566522..87eb72cf2 100644 --- a/tools/check-usb-chip.c +++ b/tools/check-usb-chip.c @@ -2960,9 +2960,11 @@ check_usb_chip (struct usb_device *dev, int verbosity, SANE_Bool from_file) if (verbose > 2) { if (chip_name) - printf ("\n\n", chip_name); + printf ("\n\n", + chip_name, PACKAGE_STRING); else - printf ("\n\n"); + printf ("\n\n", + PACKAGE_STRING); } return chip_name;