Commit f16484f0 authored by Kyle McMartin's avatar Kyle McMartin Committed by Kyle McMartin

[PARISC] Kill zone_to_nid printk warning

zone_to_nid returns int, always.
Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent f8b9e594
......@@ -607,7 +607,7 @@ void show_mem(void)
printk("Zone list for zone %d on node %d: ", j, i);
for (k = 0; zl->zones[k] != NULL; k++)
printk("[%ld/%s] ", zone_to_nid(zl->zones[k]), zl->zones[k]->name);
printk("[%d/%s] ", zone_to_nid(zl->zones[k]), zl->zones[k]->name);
printk("\n");
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment