mirror of
https://github.com/thelsing/knx.git
synced 2026-02-23 13:50:35 +01:00
@@ -82,7 +82,7 @@ int FdskCalculator::toBase32(uint8_t* in, long length, uint8_t*& out, bool usePa
|
||||
int next = 1;
|
||||
int bitsLeft = 8;
|
||||
|
||||
while (count < bufSize && (bitsLeft > 0 || next < length))
|
||||
while (bitsLeft > 0 || next < length)
|
||||
{
|
||||
if (bitsLeft < 5)
|
||||
{
|
||||
|
||||
@@ -82,7 +82,7 @@ int FdskCalculator::toBase32(uint8_t* in, long length, uint8_t*& out, bool usePa
|
||||
int next = 1;
|
||||
int bitsLeft = 8;
|
||||
|
||||
while (count < bufSize && (bitsLeft > 0 || next < length))
|
||||
while (bitsLeft > 0 || next < length)
|
||||
{
|
||||
if (bitsLeft < 5)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user