diff options
author | Hans Ulrich Niedermann <gp@n-dimensional.de> | 2001-10-21 19:50:35 +0000 |
---|---|---|
committer | Hans Ulrich Niedermann <gp@n-dimensional.de> | 2001-10-21 19:50:35 +0000 |
commit | f23b025b36ba5767bc1d8c7b469da13c52132bdf (patch) | |
tree | 3a72101a79ae71e54a533c81cd54ba68b331f6ec /libgphoto2_port | |
parent | 80e918ab484a35e27c55c72910b2e2a88b1a3b6b (diff) | |
download | libgphoto2-f23b025b36ba5767bc1d8c7b469da13c52132bdf.tar.gz |
log USB IDs in hex instead of decimal
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@2677 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'libgphoto2_port')
-rw-r--r-- | libgphoto2_port/libgphoto2_port/gp_port.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgphoto2_port/libgphoto2_port/gp_port.c b/libgphoto2_port/libgphoto2_port/gp_port.c index d862d445c..974754d4a 100644 --- a/libgphoto2_port/libgphoto2_port/gp_port.c +++ b/libgphoto2_port/libgphoto2_port/gp_port.c @@ -421,7 +421,7 @@ gp_port_flush (GPPort *dev, int direction) int gp_port_usb_find_device (GPPort *dev, int idvendor, int idproduct) { - gp_log (GP_LOG_DEBUG, "gphoto2-port", "Looking for (%i, %i)...", + gp_log (GP_LOG_DEBUG, "gphoto2-port", "Looking for (0x%x, 0x%x)...", idvendor, idproduct); CHECK_NULL (dev); |