diff options
author | Kim Hagen <khagen@multi-development.com> | 2014-09-11 09:39:12 +0200 |
---|---|---|
committer | Kim Hagen <khagen@multi-development.com> | 2014-09-11 09:39:12 +0200 |
commit | 33aee129408f59106f13b993c41533fffc54861e (patch) | |
tree | 4900c91911f942f2624f009d9f17c4ca535f2a68 /nhrp | |
parent | 3aa1c63a41eb6018dd7732a5c1f09f1963db886d (diff) | |
download | vyos-opennhrp-33aee129408f59106f13b993c41533fffc54861e.tar.gz vyos-opennhrp-33aee129408f59106f13b993c41533fffc54861e.zip |
Fix compilation error
Diffstat (limited to 'nhrp')
-rw-r--r-- | nhrp/nhrp_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrp/nhrp_common.h b/nhrp/nhrp_common.h index 7e3a3c6..9422382 100644 --- a/nhrp/nhrp_common.h +++ b/nhrp/nhrp_common.h @@ -33,7 +33,7 @@ void nhrp_log(int level, const char *format, ...); nhrp_log(NHRP_LOG_DEBUG, __VA_ARGS__); \ } while(0) -#define nhrp_debug(...) \ +#define nhrp_info(...) \ nhrp_log(NHRP_LOG_INFO, __VA_ARGS__) #define nhrp_error(...) \ |