Commit 50db3492 authored by Vladislav Grishenko's avatar Vladislav Grishenko Committed by Simon Kelley

Fix compiler warning.

parent 3b195961
...@@ -458,7 +458,7 @@ int parse_hex(char *in, unsigned char *out, int maxlen, ...@@ -458,7 +458,7 @@ int parse_hex(char *in, unsigned char *out, int maxlen,
int j, bytes = (1 + (r - in))/2; int j, bytes = (1 + (r - in))/2;
for (j = 0; j < bytes; j++) for (j = 0; j < bytes; j++)
{ {
char sav; char sav = sav;
if (j < bytes - 1) if (j < bytes - 1)
{ {
sav = in[(j+1)*2]; sav = in[(j+1)*2];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment