Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Remove spurious \ from last line of __link_set_decl ...



details:   https://anonhg.NetBSD.org/src/rev/043bd5be7326
branches:  trunk
changeset: 784730:043bd5be7326
user:      gdt <gdt%NetBSD.org@localhost>
date:      Thu Feb 07 18:53:34 2013 +0000

description:
Remove spurious \ from last line of __link_set_decl macro.

The next line is blank, so this was not actually causing a problem.
But, removing that blank line would lead to odd lossage.

(From Richard Hansen of BBN.)

diffstat:

 sys/sys/cdefs_elf.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6b30d33b40ad -r 043bd5be7326 sys/sys/cdefs_elf.h
--- a/sys/sys/cdefs_elf.h       Thu Feb 07 17:30:08 2013 +0000
+++ b/sys/sys/cdefs_elf.h       Thu Feb 07 18:53:34 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cdefs_elf.h,v 1.42 2013/02/02 17:58:11 matt Exp $      */
+/*     $NetBSD: cdefs_elf.h,v 1.43 2013/02/07 18:53:34 gdt Exp $       */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -154,7 +154,7 @@
 
 #define        __link_set_decl(set, ptype)                                     \
        extern ptype * const __start_link_set_##set[] __dso_hidden;     \
-       extern ptype * const __stop_link_set_##set[] __dso_hidden       \
+       extern ptype * const __stop_link_set_##set[] __dso_hidden
 
 #define        __link_set_start(set)   (__start_link_set_##set)
 #define        __link_set_end(set)     (__stop_link_set_##set)



Home | Main Index | Thread Index | Old Index