Fix compiler warning.

This commit is contained in:
Vladislav Grishenko
2013-11-26 11:09:31 +00:00
committed by Simon Kelley
parent 3b19596122
commit 50db3492e2

View File

@@ -458,7 +458,7 @@ int parse_hex(char *in, unsigned char *out, int maxlen,
int j, bytes = (1 + (r - in))/2;
for (j = 0; j < bytes; j++)
{
char sav;
char sav = sav;
if (j < bytes - 1)
{
sav = in[(j+1)*2];