summaryrefslogtreecommitdiffstats
path: root/fs/proc
diff options
context:
space:
mode:
authorLuiz Fernando Capitulino2005-11-14 01:07:20 +0100
committerLinus Torvalds2005-11-14 03:14:15 +0100
commit0f5c79f2920cbc21c718daeb0b12d69acf4de163 (patch)
tree7262b881bedb68c7732adbc5254ecbede04891ac /fs/proc
parent[PATCH] synclink: update to use DMA mapping API (diff)
downloadkernel-qcow2-linux-0f5c79f2920cbc21c718daeb0b12d69acf4de163.tar.gz
kernel-qcow2-linux-0f5c79f2920cbc21c718daeb0b12d69acf4de163.tar.xz
kernel-qcow2-linux-0f5c79f2920cbc21c718daeb0b12d69acf4de163.zip
[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>
Diffstat (limited to 'fs/proc')
-rw-r--r--fs/proc/task_mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index d2fa42006d8f..9ab97cef0daa 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -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,