Fix a few more compiler warnings.

This commit is contained in:
John "Elwin" Edwards 2017-09-18 19:36:14 -04:00
parent 0936c8f216
commit 90d5708d84
8 changed files with 11 additions and 7 deletions

View file

@ -1204,7 +1204,7 @@ str_compute(void)
void
strucpy(char *s1, char *s2, int len)
{
register char *sp;
const char *sp;
while (len--)
{
strcpy(s1, (sp = unctrl(*s2)));