Fixed a type mismatch in crufty misconfigured compatibilty code.
This commit is contained in:
parent
ede8dc43a2
commit
fdee4617c6
@ -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--) { \
|
||||
|
Loading…
x
Reference in New Issue
Block a user