mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-14 14:55:41 +00:00
Eliminate an unnecessary initialization from trap_pfault() that also
happens to contain a style error.
This commit is contained in:
parent
e7de1a3978
commit
c3b182d235
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161292
@ -535,7 +535,7 @@ trap_pfault(frame, usermode)
|
||||
{
|
||||
vm_offset_t va;
|
||||
struct vmspace *vm = NULL;
|
||||
vm_map_t map = 0;
|
||||
vm_map_t map;
|
||||
int rv = 0;
|
||||
vm_prot_t ftype;
|
||||
struct thread *td = curthread;
|
||||
|
@ -696,7 +696,7 @@ trap_pfault(frame, usermode, eva)
|
||||
{
|
||||
vm_offset_t va;
|
||||
struct vmspace *vm = NULL;
|
||||
vm_map_t map = 0;
|
||||
vm_map_t map;
|
||||
int rv = 0;
|
||||
vm_prot_t ftype;
|
||||
struct thread *td = curthread;
|
||||
|
Loading…
Reference in New Issue
Block a user