diff options
| author | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:03:14 +0200 | 
|---|---|---|
| committer | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:04:07 +0200 | 
| commit | d62a17aedeb0eebdba98238874bb13d62c48dbf9 (patch) | |
| tree | 3b319b1d61c8b85b4d1f06adf8b844bb8a9b5107 /zebra/zebra_fpm_private.h | |
| parent | 888ac268a0077fc9ebd1218cec6ae472af0bfc40 (diff) | |
*: reindentreindent-master-after
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'`
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/zebra_fpm_private.h')
| -rw-r--r-- | zebra/zebra_fpm_private.h | 36 | 
1 files changed, 20 insertions, 16 deletions
diff --git a/zebra/zebra_fpm_private.h b/zebra/zebra_fpm_private.h index 441a22a798..969ab6cfee 100644 --- a/zebra/zebra_fpm_private.h +++ b/zebra/zebra_fpm_private.h @@ -28,33 +28,37 @@  #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L -#define zfpm_debug(...)						\ -  do {								\ -    if (IS_ZEBRA_DEBUG_FPM) zlog_debug("FPM: " __VA_ARGS__);	\ -  } while(0) +#define zfpm_debug(...)                                                        \ +	do {                                                                   \ +		if (IS_ZEBRA_DEBUG_FPM)                                        \ +			zlog_debug("FPM: " __VA_ARGS__);                       \ +	} while (0)  #elif defined __GNUC__ -#define zfpm_debug(_args...)				\ -  do {							\ -    if (IS_ZEBRA_DEBUG_FPM) zlog_debug("FPM: " _args);	\ -  } while(0) +#define zfpm_debug(_args...)                                                   \ +	do {                                                                   \ +		if (IS_ZEBRA_DEBUG_FPM)                                        \ +			zlog_debug("FPM: " _args);                             \ +	} while (0)  #else -static inline void zfpm_debug(const char *format, ...) { return; } +static inline void zfpm_debug(const char *format, ...) +{ +	return; +}  #endif  /*   * Externs   */ -extern int -zfpm_netlink_encode_route (int cmd, rib_dest_t *dest, struct route_entry *re, -			   char *in_buf, size_t in_buf_len); +extern int zfpm_netlink_encode_route(int cmd, rib_dest_t *dest, +				     struct route_entry *re, char *in_buf, +				     size_t in_buf_len); -extern int -zfpm_protobuf_encode_route (rib_dest_t *dest, struct route_entry *re, -			    uint8_t *in_buf, size_t in_buf_len); +extern int zfpm_protobuf_encode_route(rib_dest_t *dest, struct route_entry *re, +				      uint8_t *in_buf, size_t in_buf_len); -extern struct route_entry *zfpm_route_for_update (rib_dest_t *dest); +extern struct route_entry *zfpm_route_for_update(rib_dest_t *dest);  #endif /* _ZEBRA_FPM_PRIVATE_H */  | 
