Skip to content

Commit

Permalink
Fixed another use of uint8_t and removed unused int8 typedef.
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/david/tashtego/svn/muforth/trunk@447 f1bc7e2d-46f1-0310-96be-f91141564092
  • Loading branch information
Michael Pruemm committed Mar 27, 2006
1 parent d3a3ecd commit df0cf33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion muforth.c
Expand Up @@ -163,7 +163,7 @@ static void convert_command_line(int argc, char *argv[])
/* null terminate and align */
pdt = pline;
*pdt++ = 0;
pdt = (uint8_t *)ALIGNED(pdt);
pdt = (uint8 *)ALIGNED(pdt);
}

void mu_push_command_line()
Expand Down

0 comments on commit df0cf33

Please sign in to comment.