uncrustify.

This commit is contained in:
Kelvin Sherlock 2018-08-20 20:57:45 -04:00
parent a5e55f826c
commit 8be3dad543
4 changed files with 1705 additions and 1706 deletions

View File

@ -427,8 +427,7 @@ const char *host_error_name(word16 error) {
*/
static int hex(byte c)
{
static int hex(byte c) {
if (c >= '0' && c <= '9') return c - '0';
if (c >= 'a' && c <= 'f') return c + 10 - 'a';
if (c >= 'A' && c <= 'F') return c + 10 - 'A';