diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 614da18..914f77c 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
#define FLOAT_MAX_MANTISSA 16777216 /* 2^24 */
#define VALID_RANGE_DESC_SIZE 4
+#define TEMPERATURE_TYPE_SIZE 1
struct thermometer {
DBusConnection *conn; /* The connection to the bus */
{
struct characteristic *ch = user_data;
struct thermometer *t = ch->t;
- uint8_t value[ATT_MAX_MTU];
+ uint8_t value[TEMPERATURE_TYPE_SIZE];
ssize_t vlen;
if (status != 0) {