Fix style issue in crypt.c
This commit is contained in:
parent
fbf71521f1
commit
81f9cf2a33
|
@ -8,7 +8,8 @@
|
||||||
#include "../crypt.h"
|
#include "../crypt.h"
|
||||||
|
|
||||||
static int
|
static int
|
||||||
hexdec(int c) {
|
hexdec(int c)
|
||||||
|
{
|
||||||
if(c >= '0' && c <= '9')
|
if(c >= '0' && c <= '9')
|
||||||
return c - '0';
|
return c - '0';
|
||||||
else if(c >= 'A' && c <= 'F')
|
else if(c >= 'A' && c <= 'F')
|
||||||
|
@ -19,7 +20,8 @@ hexdec(int c) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
mdcheckline(const char *s, uint8_t *md, size_t sz) {
|
mdcheckline(const char *s, uint8_t *md, size_t sz)
|
||||||
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
int b1, b2;
|
int b1, b2;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user