mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
Fixed a type mismatch in crufty misconfigured compatibilty code.
This commit is contained in:
parent
ede8dc43a2
commit
fdee4617c6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14704
@ -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…
Reference in New Issue
Block a user