svn commit: r215144 - head/lib/libc/include

Dimitry Andric dim at FreeBSD.org
Thu Nov 11 21:36:52 UTC 2010


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 at verid
 
 __sym_compat(__semctl, freebsd7___semctl, FBSD_1.0);
 __sym_compat(msgctl, freebsd7_msgctl, FBSD_1.0);


More information about the svn-src-head mailing list