Module Name:    src
Committed By:   gdt
Date:           Thu Feb  7 18:53:35 UTC 2013

Modified Files:
        src/sys/sys: cdefs_elf.h

Log Message:
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.)


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/sys/cdefs_elf.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/cdefs_elf.h
diff -u src/sys/sys/cdefs_elf.h:1.42 src/sys/sys/cdefs_elf.h:1.43
--- src/sys/sys/cdefs_elf.h:1.42	Sat Feb  2 17:58:11 2013
+++ src/sys/sys/cdefs_elf.h	Thu Feb  7 18:53:34 2013
@@ -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)

Reply via email to