summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2013-05-02 18:02:18 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2013-05-02 18:02:18 +0200
commit2ccf32df8945388076781f42879040c54e3095f4 (patch)
tree33da38c62959a2a754aa7b1731ef7636b867c281
parent25d4abdab7974ceda7e394c22889c615abd48425 (diff)
downloadneard-2ccf32df8945388076781f42879040c54e3095f4.tar.gz
neard-2ccf32df8945388076781f42879040c54e3095f4.tar.bz2
neard-2ccf32df8945388076781f42879040c54e3095f4.zip
nfctool: sniffer: Fix over 80 chars macro
-rw-r--r--tools/nfctool/llcp-decode.c7
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__)