Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Nov 2010 21:36:52 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215144 - head/lib/libc/include
Message-ID:  <201011112136.oABLaqID085226@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Thu Nov 11 21:36:52 2010
New Revision: 215144
URL: http://svn.freebsd.org/changeset/base/215144

Log:
  Remove some unneeded spaces from the __sym_compat() macro, since newer
  versions of gas are more fussy about spaces surrounding '@' signs in
  versioned symbol names.

Modified:
  head/lib/libc/include/compat.h

Modified: head/lib/libc/include/compat.h
==============================================================================
--- head/lib/libc/include/compat.h	Thu Nov 11 20:52:24 2010	(r215143)
+++ head/lib/libc/include/compat.h	Thu Nov 11 21:36:52 2010	(r215144)
@@ -36,7 +36,7 @@
 #define	__LIBC_COMPAT_H__
 
 #define	__sym_compat(sym,impl,verid)	\
-	.symver impl , sym @ verid
+	.symver impl, sym@verid
 
 __sym_compat(__semctl, freebsd7___semctl, FBSD_1.0);
 __sym_compat(msgctl, freebsd7_msgctl, FBSD_1.0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011112136.oABLaqID085226>