Skip to content

Commit

Permalink
fix build problems
Browse files Browse the repository at this point in the history
  • Loading branch information
noacoohen committed Sep 16, 2024
1 parent a0c7df0 commit bf2bca3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libusb/device-watcher-libusb.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "../usb/usb-device.h"
#include "libusb.h"
#include "context-libusb.h"

#include "platform\device-watcher.h"
#include <memory>

namespace librealsense
Expand Down
2 changes: 1 addition & 1 deletion src/libusb/enumerator-libusb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace librealsense
auto ret = libusb_get_device_descriptor(device, &desc);
if (LIBUSB_SUCCESS == ret)
{
LOG_DEBUG("Found device " << hexify(desc.idVendor) << " " << hexify(desc.idProduct));
LOG_DEBUG( "Found device " << rsutils::string::hexify( desc.idVendor ) << " "<< rsutils::string::hexify( desc.idProduct ) );
auto sd = get_subdevices(device, desc);
rv.insert(rv.end(), sd.begin(), sd.end());
}
Expand Down

0 comments on commit bf2bca3

Please sign in to comment.