Skip to content

Commit 9f9c72a

Browse files
committed
JSHint for #21
1 parent 34e9028 commit 9f9c72a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/usb.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ BluetoothHciSocket.prototype.bindUser = function(devId) {
4747

4848
debug('using USB BUS = ' + usbBus + ', Address = ' + usbAddress);
4949

50-
var usbDevices = usb.getDeviceList()
50+
var usbDevices = usb.getDeviceList();
51+
5152
for (var i = 0; i < usbDevices.length; i++) {
52-
var usbDeviceDesc = usbDevices[i].deviceDescriptor
53+
var usbDeviceDesc = usbDevices[i].deviceDescriptor;
54+
5355
if ((usbDeviceDesc.idVendor == usbVid) &&
5456
(usbDeviceDesc.idProduct == usbPid) &&
5557
(usbDevices[i].busNumber == usbBus) &&

0 commit comments

Comments
 (0)