aboutsummaryrefslogtreecommitdiffstats
path: root/package/libnl-tiny/src
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-10-14 00:14:43 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-10-14 00:14:43 +0000
commit39d45d2bfca35e07dab7550154033ae62ea250bc (patch)
tree52e23519c837934f3a4b5c7469f5d02b05ec0096 /package/libnl-tiny/src
parentd14a12a3e23d2883dd96a802f00ffd207bc3b4bc (diff)
downloadupstream-39d45d2bfca35e07dab7550154033ae62ea250bc.tar.gz
upstream-39d45d2bfca35e07dab7550154033ae62ea250bc.tar.bz2
upstream-39d45d2bfca35e07dab7550154033ae62ea250bc.zip
libnl-tiny: fix a compiler warning that shows up with -pedantic
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23431 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libnl-tiny/src')
-rw-r--r--package/libnl-tiny/src/include/netlink/types.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/package/libnl-tiny/src/include/netlink/types.h b/package/libnl-tiny/src/include/netlink/types.h
index 6d8aaf89ee..de81ace11e 100644
--- a/package/libnl-tiny/src/include/netlink/types.h
+++ b/package/libnl-tiny/src/include/netlink/types.h
@@ -108,10 +108,14 @@ struct nl_dump_params
unsigned int dp_line;
};
+#ifndef __GNUC__
+#define __extension__
+#endif
+
#define min_t(type,x,y) \
- ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
+ __extension__({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
#define max_t(type,x,y) \
- ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
+ __extension__({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
#endif