Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin Howard committed Nov 22, 2019
1 parent 96518d8 commit bb86c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/num.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ ssize_t bc_num_cmp(const BcNum *a, const BcNum *b) {
a_int -= b_int;
a_max = (a->rdx > b->rdx);

if (a_int) return neg ? - (ssize_t) a_int : (ssize_t) a_int;
if (a_int) return neg ? -((ssize_t) a_int) : (ssize_t) a_int;

if (a_max) {
min = b->rdx;
Expand Down

0 comments on commit bb86c3b

Please sign in to comment.