From d866c3af42bb32a328ce2fd7e460744e28efd08d Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Wed, 28 Sep 2016 11:56:03 +0200 Subject: cppcheck invalidPrintfArgType signedness and long vs int corrections Change-Id: I67c6b9e05b16f5d8d4693879f1656db50dc7ec48 Reviewed-on: https://gerrit.libreoffice.org/29355 Tested-by: Jenkins Reviewed-by: Jochen Nitschke --- solenv/bin/concat-deps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'solenv') 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; -- cgit