projects
/
openwrt
/
staging
/
chunkeey.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ca9159
)
libnl-tiny: fix a compiler warning that shows up with -pedantic
author
Felix Fietkau
<nbd@openwrt.org>
Thu, 14 Oct 2010 00:14:43 +0000
(
00:14
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 14 Oct 2010 00:14:43 +0000
(
00:14
+0000)
SVN-Revision: 23431
package/libnl-tiny/src/include/netlink/types.h
patch
|
blob
|
history
diff --git
a/package/libnl-tiny/src/include/netlink/types.h
b/package/libnl-tiny/src/include/netlink/types.h
index 6d8aaf89eef64104e434a5e72a78936f9f8829cb..de81ace11e03f10d775652811fd60d0f9157ab05 100644
(file)
--- 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