Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Dec 10, 2016
1 parent b336f08 commit 580f655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -3176,7 +3176,7 @@ fetch_token_in_cc(OnigToken* tok, UChar** src, UChar* end, ScanEnv* env)
PUNFETCH;
num = fetch_escaped_value(&p, end, env, &c2);
if (num < 0) return num;
if ((OnigCodePoint)tok->u.c != c2) {
if ((OnigCodePoint )tok->u.c != c2) {
tok->u.code = (OnigCodePoint )c2;
tok->type = TK_CODE_POINT;
}
Expand Down Expand Up @@ -3780,7 +3780,7 @@ fetch_token(OnigToken* tok, UChar** src, UChar* end, ScanEnv* env)
num = fetch_escaped_value(&p, end, env, &c2);
if (num < 0) return num;
/* set_raw: */
if ((OnigCodePoint)tok->u.c != c2) {
if ((OnigCodePoint )tok->u.c != c2) {
tok->type = TK_CODE_POINT;
tok->u.code = (OnigCodePoint )c2;
}
Expand Down

0 comments on commit 580f655

Please sign in to comment.