summaryrefslogtreecommitdiff
path: root/transport.c
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-04-24 19:39:26 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-04-24 19:39:26 -0700
commite05d7abbcf880099058b699ac52f65edcac95582 (patch)
tree89f08bae171474b5e4060b1586c27c5ccaa04128 /transport.c
parent27ae0ad1406a33919ea9f76034495bca7cccf051 (diff)
downloadxorg-lib-libxtrans-e05d7abbcf880099058b699ac52f65edcac95582.tar.gz
Silence warnings when building with clang
/usr/X11/include/X11/Xtrans/Xtransint.h:349:12: error: unused function 'is_numeric' [-Werror,-Wunused-function] static int is_numeric ( ^ /usr/X11/include/X11/Xtrans/Xtransint.h:354:12: error: unused function 'trans_mkdir' [-Werror,-Wunused-function] static int trans_mkdir ( ^ In file included from /usr/X11/include/X11/Xtrans/transport.c:67: ... fatal error: too many errors emitted, stopping now [-ferror-limit=] Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'transport.c')
-rw-r--r--transport.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/transport.c b/transport.c
index 84a2915..0013b01 100644
--- a/transport.c
+++ b/transport.c
@@ -55,6 +55,12 @@ from The Open Group.
#include "Xtransint.h"
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wformat-nonliteral"
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
+#endif
+
#ifdef LOCALCONN
#include "Xtranslcl.c"
#endif
@@ -66,3 +72,7 @@ from The Open Group.
#endif
#include "Xtrans.c"
#include "Xtransutil.c"
+
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif