Messages in this thread Patch in this message |  | | | Date | Thu, 12 Feb 2004 05:43:03 -0500 | | From | Stephane Ouellette <> | | Subject | [PATCH][COSMETIC[[2.4] Remove double semicolon in arch/i386/mm/faulc.c | |
Marcelo,
the following patch removes a double semicolon in
arch/i386/mm/fault.c for kernel 2.4.25-rc2.
Stephane Ouellette
--- linux-2.4.25-rc2/arch/i386/mm/fault.c 2004-02-11 21:33:08.000000000 -0500
+++ linux-2.4.25-rc2-fixed/arch/i386/mm/fault.c 2004-02-11 21:34:55.000000000 -0500
@@ -71,7 +71,7 @@
if (!vma || vma->vm_start != start)
goto bad_area;
if (!(vma->vm_flags & VM_WRITE))
- goto bad_area;;
+ goto bad_area;
}
return 1;
|  |