iso8553: Fix Dead Store Found by Clang Analyzer

Although the value stored to 'len' is used in the enclosing expression, the value is never actually read from 'len'
This commit is contained in:
Alexis La Goutte 2021-01-12 08:38:09 +00:00 committed by AndersBroman
parent ef6d3ae9a0
commit 7ef0bd34b0
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ static gchar* bin2hex(const guint8 *bin, enum bin2hex_enum type, guint32 len)
str++;
size--;
}
size = len/=2;
size = len/2;
}
while(size-- > 0)