Skip to content

Commit

Permalink
Merge pull request #1157 from peternewman/0.10
Browse files Browse the repository at this point in the history
Fix warning message of LibUsbAdaptor::CheckProduct
  • Loading branch information
peternewman authored Dec 4, 2016
2 parents cb145da + bff9e40 commit bbeae87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ x/y/2016 ola-0.10.3
* Work around <ernno.h> include failure on MIPS Debian #836383
* Update GPIO and SPI pin limits for CHIP as its pin numbers are higher #1095
* Clarify some details in ola_set_dmx help #1109 Debian #830972
* Fix a logging error regarding USB product name detection

Internal:
* Add more debugging of opening and acquiring locks
Expand Down
2 changes: 1 addition & 1 deletion libs/usb/LibUsbAdaptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ bool LibUsbAdaptor::CheckProduct(const string &expected,
const DeviceInformation &device_info) {
if (expected != device_info.product) {
OLA_WARN << "Product mismatch: " << expected << " != "
<< device_info.manufacturer;
<< device_info.product;
return false;
}
return true;
Expand Down

0 comments on commit bbeae87

Please sign in to comment.