From 2ccf32df8945388076781f42879040c54e3095f4 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Thu, 2 May 2013 18:02:18 +0200 Subject: [PATCH] nfctool: sniffer: Fix over 80 chars macro --- tools/nfctool/llcp-decode.c | 7 ++++--- 1 file 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__) -- 2.7.4