[PATCH 48/59] fs/proc: Add missing "space"

From: Joe Perches
Date: Mon Nov 19 2007 - 21:08:24 EST



Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
fs/proc/vmcore.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c
index 523e109..7c7b3ed 100644
--- a/fs/proc/vmcore.c
+++ b/fs/proc/vmcore.c
@@ -521,7 +521,7 @@ static int __init parse_crash_elf64_headers(void)
ehdr.e_ehsize != sizeof(Elf64_Ehdr) ||
ehdr.e_phentsize != sizeof(Elf64_Phdr) ||
ehdr.e_phnum == 0) {
- printk(KERN_WARNING "Warning: Core image elf header is not"
+ printk(KERN_WARNING "Warning: Core image elf header is not "
"sane\n");
return -EINVAL;
}
@@ -577,7 +577,7 @@ static int __init parse_crash_elf32_headers(void)
ehdr.e_ehsize != sizeof(Elf32_Ehdr) ||
ehdr.e_phentsize != sizeof(Elf32_Phdr) ||
ehdr.e_phnum == 0) {
- printk(KERN_WARNING "Warning: Core image elf header is not"
+ printk(KERN_WARNING "Warning: Core image elf header is not "
"sane\n");
return -EINVAL;
}
@@ -621,8 +621,8 @@ static int __init parse_crash_elf_headers(void)
if (rc < 0)
return rc;
if (memcmp(e_ident, ELFMAG, SELFMAG) != 0) {
- printk(KERN_WARNING "Warning: Core image elf header"
- " not found\n");
+ printk(KERN_WARNING "Warning: Core image elf header "
+ "not found\n");
return -EINVAL;
}

@@ -641,8 +641,8 @@ static int __init parse_crash_elf_headers(void)
/* Determine vmcore size. */
vmcore_size = get_vmcore_size_elf32(elfcorebuf);
} else {
- printk(KERN_WARNING "Warning: Core image elf header is not"
- " sane\n");
+ printk(KERN_WARNING "Warning: Core image elf header is not "
+ "sane\n");
return -EINVAL;
}
return 0;
--
1.5.3.5.652.gf192c

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/