Skip to content

Commit

Permalink
Merge pull request #57 from roens/master
Browse files Browse the repository at this point in the history
Fixed sendStr() by removing unsigned
  • Loading branch information
Erik Tylek Kettenburg committed Mar 22, 2016
2 parents c12dc1c + 1a627c3 commit 31d17ef
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -126,7 +126,7 @@ static void setXY(unsigned char row,unsigned char col)

//==========================================================//
// Prints a string regardless the cursor position.
static void sendStr(unsigned char *string)
static void sendStr(char *string)
{
unsigned char i=0;
while(*string)
Expand Down

0 comments on commit 31d17ef

Please sign in to comment.