diff options
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/fib/fib_entry_src.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/vnet/fib/fib_entry_src.h b/src/vnet/fib/fib_entry_src.h index 248cf6c4079..ced6b5c42fc 100644 --- a/src/vnet/fib/fib_entry_src.h +++ b/src/vnet/fib/fib_entry_src.h @@ -248,12 +248,8 @@ typedef struct fib_entry_src_vft_t_ { } \ } -#define FIB_ENTRY_SRC_VFT_EXISTS(esrc, func) \ -{ \ - const fib_entry_src_vft_t *_vft; \ - _vft = fib_entry_src_get_vft(esrc); \ - (_vft->func); \ -} +#define FIB_ENTRY_SRC_VFT_EXISTS(esrc, func) \ + (fib_entry_src_get_vft(esrc)->func != 0) extern const fib_entry_src_vft_t*fib_entry_src_get_vft( const fib_entry_src_t *esrc); |