Skip to content

Commit

Permalink
Fix function signature of print_uint32_base10(), necessary for compil…
Browse files Browse the repository at this point in the history
…ing simulator.
  • Loading branch information
poelstra committed Feb 13, 2015
1 parent 4bdc20f commit 56c4bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grbl/print.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void print_uint8_base10(uint8_t n)
}


void print_uint32_base10(unsigned long n)
void print_uint32_base10(uint32_t n)
{
if (n == 0) {
serial_write('0');
Expand Down

0 comments on commit 56c4bfc

Please sign in to comment.