dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Fix sparse warning in proc/task_mmu.c

fs/proc/task_mmu.c:198:33: warning: Using plain integer as NULL pointer

Signed-off-by: Luiz Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Luiz Fernando Capitulino 2005-11-13 16:07:20 -08:00 committed by Linus Torvalds
parent 0ff1b2c8ce
commit 0f5c79f292
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ static int show_map_internal(struct seq_file *m, void *v, struct mem_size_stats
static int show_map(struct seq_file *m, void *v)
{
return show_map_internal(m, v, 0);
return show_map_internal(m, v, NULL);
}
static void smaps_pte_range(struct vm_area_struct *vma, pmd_t *pmd,