From 5b66b4fe3c496c3b17ca18622100e5f5d025ddd9 Mon Sep 17 00:00:00 2001 From: john30 Date: Sun, 15 Jan 2017 13:10:04 +0100 Subject: [PATCH] formattingdiff --- src/lib/ebus/data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ebus/data.cpp b/src/lib/ebus/data.cpp index cd80f9a3..4d62df56 100644 --- a/src/lib/ebus/data.cpp +++ b/src/lib/ebus/data.cpp @@ -286,7 +286,7 @@ result_t SingleDataField::create(const string id, const unsigned char length, } byteCount = (unsigned char)((bitCount + 7) / 8); } else if (length == 0) { - byteCount = 1; //default byte count: 1 byte + byteCount = 1; // default byte count: 1 byte } else if (length <= byteCount || length == REMAIN_LEN) { byteCount = length; } else {