Module Name: src
Committed By: skrll
Date: Sat Sep 11 11:11:53 UTC 2010
Modified Files:
src/libexec/ld.elf_so: map_object.c
Log Message:
Wrap long line.
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/libexec/ld.elf_so/map_object.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/map_object.c
diff -u src/libexec/ld.elf_so/map_object.c:1.39 src/libexec/ld.elf_so/map_object.c:1.40
--- src/libexec/ld.elf_so/map_object.c:1.39 Sun Jan 10 07:29:47 2010
+++ src/libexec/ld.elf_so/map_object.c Sat Sep 11 11:11:52 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: map_object.c,v 1.39 2010/01/10 07:29:47 skrll Exp $ */
+/* $NetBSD: map_object.c,v 1.40 2010/09/11 11:11:52 skrll Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -34,7 +34,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: map_object.c,v 1.39 2010/01/10 07:29:47 skrll Exp $");
+__RCSID("$NetBSD: map_object.c,v 1.40 2010/09/11 11:11:52 skrll Exp $");
#endif /* not lint */
#include <errno.h>
@@ -114,7 +114,8 @@
/* Make sure the file is valid */
if (memcmp(ELFMAG, ehdr->e_ident, SELFMAG) != 0 ||
ehdr->e_ident[EI_CLASS] != ELFCLASS) {
- _rtld_error("%s: unrecognized file format2 [%x != %x]", path, ehdr->e_ident[EI_CLASS], ELFCLASS);
+ _rtld_error("%s: unrecognized file format2 [%x != %x]", path,
+ ehdr->e_ident[EI_CLASS], ELFCLASS);
goto bad;
}
/* Elf_e_ident includes class */