Fix a warning on 64 bits platforms: copystr() takes a size_t *,

not an int *.
This commit is contained in:
Maxime Henrion 2002-10-06 11:42:14 +00:00
parent 76900889fa
commit a8f15ed745

View File

@ -84,7 +84,7 @@ union_mount(mp, ndp, td)
char *cp = 0, *target;
int op;
int len;
u_int size;
size_t size;
UDEBUG(("union_mount(mp = %p)\n", (void *)mp));