1
0
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:
Alan Cox 2006-08-14 19:53:53 +00:00
parent e7de1a3978
commit c3b182d235
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161292
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;