summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authormartin <martin@NetBSD.org>2013-09-23 21:00:35 +0000
committermartin <martin@NetBSD.org>2013-09-23 21:00:35 +0000
commitd92de3190b83498f888dc031d7befebdeb298bf9 (patch)
tree690455cc782a4b03cd918fdcd5df69e7593fb222 /libexec
parent1e87457bad0de8e7bfffef473fe1eb35069e8c26 (diff)
Missing , in table initializer
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ld.elf_so/arch/sparc64/mdreloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ld.elf_so/arch/sparc64/mdreloc.c b/libexec/ld.elf_so/arch/sparc64/mdreloc.c
index f36cd02f687..0f27e2f6a68 100644
--- a/libexec/ld.elf_so/arch/sparc64/mdreloc.c
+++ b/libexec/ld.elf_so/arch/sparc64/mdreloc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mdreloc.c,v 1.53 2012/07/22 09:21:03 martin Exp $ */
+/* $NetBSD: mdreloc.c,v 1.54 2013/09/23 21:00:35 martin Exp $ */
/*-
* Copyright (c) 2000 Eduardo Horvath.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: mdreloc.c,v 1.53 2012/07/22 09:21:03 martin Exp $");
+__RCSID("$NetBSD: mdreloc.c,v 1.54 2013/09/23 21:00:35 martin Exp $");
#endif /* not lint */
#include <errno.h>
@@ -180,7 +180,7 @@ static const long reloc_target_bitmask[] = {
_BM(22), _BM(10), _BM(22), /* _PC_HH22, _PC_HM10, _PC_LM22 */
_BM(16), _BM(19), /* _WDISP16, _WDISP19 */
-1, /* GLOB_JMP */
- _BM(7), _BM(5), _BM(6) /* _7, _5, _6 */
+ _BM(7), _BM(5), _BM(6), /* _7, _5, _6 */
-1, -1, /* DISP64, PLT64 */
_BM(22), _BM(13), /* HIX22, LOX10 */
_BM(22), _BM(10), _BM(13), /* H44, M44, L44 */