laforge has uploaded this change for review.

View Change

osmo_libusb: Print log message on libusb initialization error

Change-Id: I2ac56e378e1279e7e333d93e54cd7a182d76498d
---
M src/usb/osmo_libusb.c
1 file changed, 3 insertions(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/39/27039/1
diff --git a/src/usb/osmo_libusb.c b/src/usb/osmo_libusb.c
index 79a8fc3..c5ea507 100644
--- a/src/usb/osmo_libusb.c
+++ b/src/usb/osmo_libusb.c
@@ -740,8 +740,10 @@
int rc;

rc = libusb_init(pluctx);
- if (rc != 0)
+ if (rc != 0) {
+ LOGP(DLUSB, LOGL_ERROR, "Error initializing libusb: %s\n", libusb_strerror(rc));
return rc;
+ }

if (pluctx)
luctx = *pluctx;

To view, visit change 27039. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2ac56e378e1279e7e333d93e54cd7a182d76498d
Gerrit-Change-Number: 27039
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge@osmocom.org>
Gerrit-MessageType: newchange