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

This commit is contained in:
rlar
2014-10-13 18:07:58 +02:00
parent ff384526cc
commit 2129197f1f
+1 -1
View File
@@ -123,6 +123,6 @@ static char *EVTbitmap(int i)
break; break;
} }
*(p) = 0; *(p) = '\0';
return(s); return(s);
} }