- toString changed

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@150 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-05-10 14:41:58 +00:00
parent 43628ec1bf
commit ac7190e889

View File

@@ -97,6 +97,6 @@ public class Usb_Endpoint_Descriptor extends Usb_Descriptor {
public String toString() {
return "Usb_Endpoint_Descriptor bEndpointAddress: 0x"
+ Integer.toHexString(bEndpointAddress);
+ Integer.toHexString(bEndpointAddress & 0xFF);
}
}