Fix another printf format warning with qsizetype

As done in 939f5112a1 elsewhere, use %zd
and cast explicitly to size_t.

Change-Id: I2fc7607725829f80cc125568246503af341749f1
Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
Volker Hilsheimer 2020-07-07 09:20:22 +02:00
parent 77bb50de8f
commit 82cb1ecca2

View File

@ -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);