Skip to content

Commit

Permalink
Merge pull request #240 from fperrad/20170622_lint
Browse files Browse the repository at this point in the history
more linting
  • Loading branch information
sjaeckel committed Jun 23, 2017
2 parents 1725b87 + 446fec1 commit cd6e602
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -29,8 +29,8 @@ static int _char_to_int(unsigned char x)
case '7': return 7;
case '8': return 8;
case '9': return 9;
default: return 100;
}
return 100;
}

#define DECODE_V(y, max) do {\
Expand Down
2 changes: 1 addition & 1 deletion src/pk/asn1/der/utctime/der_decode_utctime.c
Expand Up @@ -28,8 +28,8 @@ static int _char_to_int(unsigned char x)
case '7': return 7;
case '8': return 8;
case '9': return 9;
default: return 100;
}
return 100;
}

#define DECODE_V(y, max) \
Expand Down

0 comments on commit cd6e602

Please sign in to comment.