CppCheck: Fix fprintf format code to match unsigned type

Change-Id: Id4527ab5582294791b8db0c7ce9240e031a38bd7
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
Tobias Hunger
2014-08-04 14:00:46 +02:00
parent 6d3367c46e
commit c4eb09e9fb

View File

@@ -52,7 +52,7 @@ public:
fputc('-', stderr);
++depth;
fprintf(stderr, " %s, ahead: '%s' (%d) - block-errors: %d\n", name, spell, idx, blocked);
fprintf(stderr, " %s, ahead: '%s' (%u) - block-errors: %d\n", name, spell, idx, blocked);
}
~DebugRule()