SLUB: Fix format specifier in Documentation/vm/slabinfo.c

There's a little problem in Documentation/vm/slabinfo.c
The code is using "%d" in a printf() call to print an 'unsigned long'.
This patch corrects it to use "%lu" instead.

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Christoph Lameter <clameter@sgi.com>

authored by Jesper Juhl and committed by Christoph Lameter ac078602 1ceef402

+1 -1
+1 -1
Documentation/vm/slabinfo.c
··· 396 396 if (strcmp(s->name, "*") == 0) 397 397 return; 398 398 399 - printf("\nSlabcache: %-20s Aliases: %2d Order : %2d Objects: %d\n", 399 + printf("\nSlabcache: %-20s Aliases: %2d Order : %2d Objects: %lu\n", 400 400 s->name, s->aliases, s->order, s->objects); 401 401 if (s->hwcache_align) 402 402 printf("** Hardware cacheline aligned\n");