fixed stupid typo (missing comma) in hand-applied diff

This commit is contained in:
cgd 1993-04-09 17:19:02 +00:00
parent f11ba7bd38
commit c6746c94dc
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ smmap(p, uap, retval)
if (uap->prot & PROT_EXEC)
prot |= VM_PROT_EXECUTE;
error = vm_mmap(&p->p_vmspace->vm_map, &addr, size, prot, maxprot
error = vm_mmap(&p->p_vmspace->vm_map, &addr, size, prot, maxprot,
flags, handle, (vm_offset_t)uap->pos);
if (error == 0)
*retval = (int) addr;