cleanup, use '\0' when talking about a char

This commit is contained in:
rlar 2014-10-05 10:40:43 +02:00
parent ff384526cc
commit 2129197f1f
1 changed files with 1 additions and 1 deletions

View File

@ -123,6 +123,6 @@ static char *EVTbitmap(int i)
break;
}
*(p) = 0;
*(p) = '\0';
return(s);
}