1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 21:48:23 +02:00

libnl-tiny: fix a compiler warning that shows up with -pedantic

SVN-Revision: 23431
This commit is contained in:
Felix Fietkau 2010-10-14 00:14:43 +00:00
parent 1ca915970e
commit d84a69e187

@ -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