This commit is contained in:
ceriel
1988-10-07 10:26:37 +00:00
parent c488a4d491
commit 79295ca3ea
4 changed files with 11 additions and 7 deletions

View File

@@ -106,7 +106,7 @@ Salloc(str)
if (str == 0)
str = "";
return strcpy(Malloc(strlen(str) + 1), str);
return strcpy(Malloc((unsigned)strlen(str) + 1), str);
}
EnHash(id)