Fixed a type mismatch in crufty misconfigured compatibilty code.

This commit is contained in:
Bruce Evans 1996-03-19 15:11:13 +00:00
parent ede8dc43a2
commit fdee4617c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14704

View File

@ -54,7 +54,7 @@
#define memset(s,c,n) if (c == 0) { \
bzero(s,n); \
} else { \
register char *src = s; \
register char *src = (char *)s; \
register int count = n; \
\
while (count--) { \