Skip to content

Commit

Permalink
Fix up my indentation. Different text editor settings. :-(
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterScott committed Feb 12, 2012
1 parent db9c326 commit 46b4339
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions json.c
Expand Up @@ -47,10 +47,10 @@ typedef unsigned short json_uchar;

static unsigned char hex_value (json_char c)
{
if (c >= 48 && c <= 57) return c - 48;
if (c >= 65 && c <= 70) return c - 55;
if (c >= 97 && c <= 102) return c - 87;
return -1;
if (c >= 48 && c <= 57) return c - 48;
if (c >= 65 && c <= 70) return c - 55;
if (c >= 97 && c <= 102) return c - 87;
return 0xFF;
}

typedef struct
Expand Down

0 comments on commit 46b4339

Please sign in to comment.