From d5e2df438ba3abb56cd340bd54a80a6be5bfc20b Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Thu, 5 Jun 2014 08:22:59 +0100 Subject: [PATCH] replace 16 with UUID::LENGTH_OF_LONG_UUID --- GattService.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GattService.h b/GattService.h index 8517862..b1ea0c3 100644 --- a/GattService.h +++ b/GattService.h @@ -34,7 +34,7 @@ class GattService private: public: - GattService(const uint8_t[16]); /* 128-bit Base UUID */ + GattService(const uint8_t[UUID::LENGTH_OF_LONG_UUID]); GattService(uint16_t); /* 16-bit BLE UUID */ virtual ~GattService(void);