diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 12:21:59 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 13:21:04 +0200 |
commit | aa2cc04b9ef04404b719db5d693e6f146dbe026a (patch) | |
tree | 469b7b176428d24e797ae39105705eea45ef1901 /lib/extras | |
parent | 09f1d96b662d34c55de9903a8a890ad887bcd699 (diff) | |
download | gnutls-aa2cc04b9ef04404b719db5d693e6f146dbe026a.tar.gz |
several spacing fixes to keep syntax-check happy
Diffstat (limited to 'lib/extras')
-rw-r--r-- | lib/extras/hex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extras/hex.c b/lib/extras/hex.c index 3a89a014bb..55b64ca309 100644 --- a/lib/extras/hex.c +++ b/lib/extras/hex.c @@ -10,11 +10,11 @@ static bool char_to_hex(unsigned char *val, char c) *val = c - '0'; return true; } - if (c >= 'a' && c <= 'f') { + if (c >= 'a' && c <= 'f') { *val = c - 'a' + 10; return true; } - if (c >= 'A' && c <= 'F') { + if (c >= 'A' && c <= 'F') { *val = c - 'A' + 10; return true; } |