diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-09-28 11:56:03 +0200 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-02 08:20:44 +0000 |
commit | d866c3af42bb32a328ce2fd7e460744e28efd08d (patch) | |
tree | 9e06c5d2b131d7b54d552c9655abf944882d0b3a /solenv | |
parent | a9483f7105b58b6d78c06aa5b3e6e4a3466ae8dc (diff) |
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.c | 2 |
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; |