diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2013-05-02 18:02:18 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-05-02 18:02:18 +0200 |
commit | 2ccf32df8945388076781f42879040c54e3095f4 (patch) | |
tree | 33da38c62959a2a754aa7b1731ef7636b867c281 | |
parent | 25d4abdab7974ceda7e394c22889c615abd48425 (diff) | |
download | neard-2ccf32df8945388076781f42879040c54e3095f4.tar.gz neard-2ccf32df8945388076781f42879040c54e3095f4.tar.bz2 neard-2ccf32df8945388076781f42879040c54e3095f4.zip |
nfctool: sniffer: Fix over 80 chars macro
-rw-r--r-- | tools/nfctool/llcp-decode.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/nfctool/llcp-decode.c b/tools/nfctool/llcp-decode.c index d7e67ab..fa42af5 100644 --- a/tools/nfctool/llcp-decode.c +++ b/tools/nfctool/llcp-decode.c @@ -139,9 +139,10 @@ static const gchar *llcp_param_str[] = { "Service Discovery Response" }; -#define llcp_printf_header(prefix, color, fmt, ...) print_indent_prefix(LLCP_HEADER_INDENT, \ - color, prefix, \ - LLCP_COLOR, fmt, ## __VA_ARGS__) +#define llcp_printf_header(prefix, color, fmt, ...) \ + print_indent_prefix( LLCP_HEADER_INDENT,\ + color, prefix, \ + LLCP_COLOR, fmt, ## __VA_ARGS__) #define llcp_printf_msg(fmt, ...) print_indent(LLCP_MSG_INDENT, \ LLCP_COLOR, fmt, ## __VA_ARGS__) |