[TRIVIAL] [PARISC] Fix module.c printk message, add missing ')'
authorHelge Deller <deller@gmx.de>
Wed, 18 Oct 2006 19:44:30 +0000 (21:44 +0200)
committerKyle McMartin <kyle@ubuntu.com>
Fri, 8 Dec 2006 05:34:41 +0000 (00:34 -0500)
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
arch/parisc/kernel/module.c

index f50b982..47ea4e4 100644 (file)
@@ -822,7 +822,8 @@ int module_finalize(const Elf_Ehdr *hdr,
               me->name, strtab, symhdr);
 
        if(me->arch.got_count > MAX_GOTS) {
-               printk(KERN_ERR "%s: Global Offset Table overflow (used %ld, allowed %d\n", me->name, me->arch.got_count, MAX_GOTS);
+               printk(KERN_ERR "%s: Global Offset Table overflow (used %ld, allowed %d)\n",
+                               me->name, me->arch.got_count, MAX_GOTS);
                return -EINVAL;
        }