create service search pattern from uuid16 fix

This commit is contained in:
mila@ringwald.ch 2014-12-04 13:57:11 +00:00
parent 0f35d59dc6
commit a8c5ee2406

View File

@ -145,6 +145,6 @@ public class Util {
}
public static byte[] serviceSearchPatternForUUID16(int uuid){
return new byte[] {(byte)0x35, (byte)0x03, (byte)0x19, 0, 0,(byte) (uuid >> 8), (byte) (uuid & 0xff)};
return new byte[] {(byte)0x35, (byte)0x03, (byte)0x19, (byte) (uuid >> 8), (byte) (uuid & 0xff)};
}
}