From 034aaaa62bfff85b0f5843cbd2e09a122c7dd7dd Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 6 Nov 2016 04:29:47 -0800 Subject: [PATCH] cppcheck: incorrect printf specifiers --- src/fish_indent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fish_indent.cpp b/src/fish_indent.cpp index 7f8df7cab..8605e4ead 100644 --- a/src/fish_indent.cpp +++ b/src/fish_indent.cpp @@ -102,7 +102,7 @@ static void dump_node(indent_t node_indent, const parse_node_t &node, const wcst nextc_str[1] = L'c'; nextc_str[2] = nextc + '@'; } - fwprintf(stderr, L"{off %4d, len %4d, indent %2u, kw %ls, %ls} [%ls|%ls|%ls]\n", + fwprintf(stderr, L"{off %4u, len %4u, indent %2u, kw %ls, %ls} [%ls|%ls|%ls]\n", node.source_start, node.source_length, node_indent, keyword_description(node.keyword), token_type_description(node.type), prevc_str, source_txt.c_str(), nextc_str); }