summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-09-28 11:56:03 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-02 08:20:44 +0000
commitd866c3af42bb32a328ce2fd7e460744e28efd08d (patch)
tree9e06c5d2b131d7b54d552c9655abf944882d0b3a /solenv
parentadd default cases (diff)
downloadcore-d866c3af42bb32a328ce2fd7e460744e28efd08d.tar.gz
core-d866c3af42bb32a328ce2fd7e460744e28efd08d.zip
cppcheck invalidPrintfArgType
signedness and long vs int corrections Change-Id: I67c6b9e05b16f5d8d4693879f1656db50dc7ec48 Reviewed-on: https://gerrit.libreoffice.org/29355 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/concat-deps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c
index bb419baa71f4..064492ae8c5d 100644
--- a/solenv/bin/concat-deps.c
+++ b/solenv/bin/concat-deps.c
@@ -481,7 +481,7 @@ unsigned int i;
hash->size = (old_size << 1) + 1;
/* we really should avoid to get there... so print a message to alert of the condition */
- fprintf(stderr, "resize hash %d -> %d\n", old_size, hash->size);
+ fprintf(stderr, "resize hash %u -> %u\n", old_size, hash->size);
if(hash->size == old_size)
{
hash->flags |= HASH_F_NO_RESIZE;