Skip to content

Commit

Permalink
return upper case of serial#
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Li <Frank.Li@nxp.com>
  • Loading branch information
nxpfrankli committed Feb 15, 2024
1 parent 33f8086 commit 5430fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libuuu/usbhotplug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static string get_device_serial_no(libusb_device *dev, struct libusb_device_desc
if(ret >= 0)
serial.resize(ret);

return serial;
return str_to_upper(serial);
}

static string get_device_serial_no(libusb_device *dev)
Expand Down

0 comments on commit 5430fbe

Please sign in to comment.