diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-28 16:09:23 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-28 23:02:31 -0700 |
commit | 0c6ce78abf6e228d44c3840edb8a4ae0c1299825 (patch) | |
tree | 55f228de41dd191609310c03633579eec05b1f33 /include/net/ip_vs.h | |
parent | 38ff4fa49bef77e86b21d95d9ce341a098f02839 (diff) | |
download | op-kernel-dev-0c6ce78abf6e228d44c3840edb8a4ae0c1299825.zip op-kernel-dev-0c6ce78abf6e228d44c3840edb8a4ae0c1299825.tar.gz |
net: replace uses of NIP6_FMT with %p6
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip_vs.h')
-rw-r--r-- | include/net/ip_vs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index fe9fcf7..6a66920 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -87,8 +87,8 @@ static inline const char *ip_vs_dbg_addr(int af, char *buf, size_t buf_len, int len; #ifdef CONFIG_IP_VS_IPV6 if (af == AF_INET6) - len = snprintf(&buf[*idx], buf_len - *idx, "[" NIP6_FMT "]", - NIP6(addr->in6)) + 1; + len = snprintf(&buf[*idx], buf_len - *idx, "[%p6]", + &addr->in6) + 1; else #endif len = snprintf(&buf[*idx], buf_len - *idx, NIPQUAD_FMT, |