summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2011-03-02 00:37:18 +0000
committerPete Batard <pbatard@gmail.com>2011-03-02 00:37:18 +0000
commit348bd2bb5fc221feb569b71bb5ba738a2795f379 (patch)
tree855f5b59cf765bf17a695334d48c28220d1a1043
parent5c4a76dc9b820df869a4f823b58cc919894d65ff (diff)
downloadlibusb-348bd2bb5fc221feb569b71bb5ba738a2795f379.tar.gz
[topology] removed debug message
-rw-r--r--configure.ac2
-rw-r--r--libusb/core.c1
-rw-r--r--libusb/libusb_version.h2
3 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index b085d1a..404c756 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
m4_define(LIBUSB_MAJOR, [1])
m4_define(LIBUSB_MINOR, [0])
m4_define(LIBUSB_MICRO, [8])
-m4_define(LIBUSB_NANO, [10332])
+m4_define(LIBUSB_NANO, [10333])
AC_INIT([libusb], LIBUSB_MAJOR.LIBUSB_MINOR.LIBUSB_MICRO, [libusb-devel@lists.sourceforge.net], [libusb], [http://www.libusb.org/])
diff --git a/libusb/core.c b/libusb/core.c
index f09c6cd..32811c1 100644
--- a/libusb/core.c
+++ b/libusb/core.c
@@ -706,7 +706,6 @@ int API_EXPORTED libusb_get_port_path(libusb_context *ctx, libusb_device *dev, u
// TODO: see how the other backends want to implement HCDs as parents
if (dev->port_number == 0)
break;
- usbi_dbg("another one (addy: %d)", dev->device_address);
if (--i<0) {
return LIBUSB_ERROR_OVERFLOW;
}
diff --git a/libusb/libusb_version.h b/libusb/libusb_version.h
index 76a70e7..8808c02 100644
--- a/libusb/libusb_version.h
+++ b/libusb/libusb_version.h
@@ -24,6 +24,6 @@
#define LIBUSB_VERSION_MAJOR 1
#define LIBUSB_VERSION_MINOR 0
#define LIBUSB_VERSION_MICRO 8
-#define LIBUSB_VERSION_NANO 10332
+#define LIBUSB_VERSION_NANO 10333
#endif