Skip to content

Commit

Permalink
tests: print_number: Fix build on 32bit ppc (and potentially others)
Browse files Browse the repository at this point in the history
  • Loading branch information
FSMaxB committed Mar 18, 2017
1 parent a1b37d0 commit 4ec6e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/print_number.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static void print_number_should_print_negative_integers(void)
{
assert_print_number("-1", -1);
assert_print_number("-32768", -32768);
assert_print_number("-2147483648", -2147483648);
assert_print_number("-2147483648", -2147483648.0);
}

static void print_number_should_print_positive_integers(void)
Expand Down

0 comments on commit 4ec6e76

Please sign in to comment.