diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-01-07 19:09:34 -0800 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-02-07 10:44:20 +0100 |
commit | e0a711cdde1d0390a922f80b69e3b365533b34cf (patch) | |
tree | d5f71e2e28a08b5e6dde57959679198a324ec49e /arch/arm/insert_string_acle.c | |
parent | 550f98395c8677ae9b08ec39433f5137e5cea2c8 (diff) |
Fixed formatting, 4 spaces for code intent, 2 spaces for preprocessor indent, initial function brace on the same line as definition, removed extraneous spaces and new lines.
Diffstat (limited to 'arch/arm/insert_string_acle.c')
-rw-r--r-- | arch/arm/insert_string_acle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/insert_string_acle.c b/arch/arm/insert_string_acle.c index 363f050..b6ddc07 100644 --- a/arch/arm/insert_string_acle.c +++ b/arch/arm/insert_string_acle.c @@ -43,9 +43,9 @@ Pos insert_string_acle(deflate_state *const s, const Pos str, unsigned int count s->prev[p & s->w_mask] = head; s->head[hm] = p; if (p == lp) - ret = head; + ret = head; } else if (p == lp) { - ret = p; + ret = p; } } return ret; |