From 82cb1ecca20fb2403c63657dfea3bef3c7a506b1 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Tue, 7 Jul 2020 09:20:22 +0200 Subject: [PATCH] Fix another printf format warning with qsizetype MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As done in 939f5112a1033299ec1a178fbd4232717a98e735 elsewhere, use %zd and cast explicitly to size_t. Change-Id: I2fc7607725829f80cc125568246503af341749f1 Reviewed-by: Andrei Golubev Reviewed-by: Tor Arne Vestbø --- src/tools/androiddeployqt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/androiddeployqt/main.cpp b/src/tools/androiddeployqt/main.cpp index 008369c2aa7..6180ac85acc 100644 --- a/src/tools/androiddeployqt/main.cpp +++ b/src/tools/androiddeployqt/main.cpp @@ -1195,7 +1195,7 @@ bool copyAndroidExtraResources(Options *options) return true; if (options->verbose) - fprintf(stdout, "Copying %d external resources to package.\n", options->extraPlugins.size()); + fprintf(stdout, "Copying %zd external resources to package.\n", size_t(options->extraPlugins.size())); for (const QString &extraResource : options->extraPlugins) { QFileInfo extraResourceInfo(extraResource);