From a2f510e8ec9f80c22bbf0ff9322fba45bb4f9714 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Sat, 4 Dec 2010 17:41:58 +0000 Subject: [PATCH] Fix comment intentation. --- sys/vm/vm_mmap.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index f2dba2cbfe28..a73e03acee45 100644 --- a/sys/vm/vm_mmap.c +++ b/sys/vm/vm_mmap.c @@ -276,14 +276,14 @@ mmap(td, uap) if (addr + size < addr) return (EINVAL); } else { - /* - * XXX for non-fixed mappings where no hint is provided or - * the hint would fall in the potential heap space, - * place it after the end of the largest possible heap. - * - * There should really be a pmap call to determine a reasonable - * location. - */ + /* + * XXX for non-fixed mappings where no hint is provided or + * the hint would fall in the potential heap space, + * place it after the end of the largest possible heap. + * + * There should really be a pmap call to determine a reasonable + * location. + */ PROC_LOCK(td->td_proc); if (addr == 0 || (addr >= round_page((vm_offset_t)vms->vm_taddr) &&