From 723162fdf70cb6158ab5e5e275ef735b415fec76 Mon Sep 17 00:00:00 2001 From: dim Date: Thu, 11 Nov 2010 21:36:52 +0000 Subject: [PATCH] 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. --- lib/libc/include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/include/compat.h b/lib/libc/include/compat.h index 13c1d2043e76..769454002788 100644 --- a/lib/libc/include/compat.h +++ b/lib/libc/include/compat.h @@ -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);