add missing printk loglevel in mm/swapfile.c

in mm/swapfile.c a printk() is missing a loglevel. I believe the proper
loglevel for this situation is KERN_ERR, so that's what the patch below
sets -if you agree, please apply.

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: Adrian Bunk <bunk@stusta.de>

authored by

Jesper Juhl and committed by
Adrian Bunk
e97a3111 ffd59dac

+1 -1
+1 -1
mm/swapfile.c
··· 1442 1442 else if (!memcmp("SWAPSPACE2",swap_header->magic.magic,10)) 1443 1443 swap_header_version = 2; 1444 1444 else { 1445 - printk("Unable to find swap-space signature\n"); 1445 + printk(KERN_ERR "Unable to find swap-space signature\n"); 1446 1446 error = -EINVAL; 1447 1447 goto bad_swap; 1448 1448 }