Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 74da6cd0 authored by Jesper Juhl's avatar Jesper Juhl Committed by Adrian Bunk
Browse files

missing printk loglevel and tiny tiny whitespace change in binfmt_elf()



Patch adds a mising printk loglevel (I think KERN_WARNING is appropriate
here) in fs/binfmt_elf.c, and while I was there I made some tiny tiny tiny
adjustments to whitespacing in the neighborhood.

Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent e97a3111
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1636,7 +1636,7 @@ static int elf_core_dump(long signr, struct pt_regs * regs, struct file * file)

	if ((off_t)file->f_pos != offset) {
		/* Sanity check */
		printk("elf_core_dump: file->f_pos (%ld) != offset (%ld)\n",
		printk(KERN_WARNING "elf_core_dump: file->f_pos (%ld) != offset (%ld)\n",
		       (off_t)file->f_pos, offset);
	}