Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/asset/intern/asset_ops.cc')
-rw-r--r--source/blender/editors/asset/intern/asset_ops.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/asset/intern/asset_ops.cc b/source/blender/editors/asset/intern/asset_ops.cc
index ba7b56db3ec..5aac4f02b03 100644
--- a/source/blender/editors/asset/intern/asset_ops.cc
+++ b/source/blender/editors/asset/intern/asset_ops.cc
@@ -925,9 +925,9 @@ static bool has_external_files(Main *bmain, struct ReportList *reports)
callback_info.reports,
RPT_ERROR,
"Unable to copy bundle due to %zu external dependencies; more details on the console",
- (size_t)callback_info.external_files.size());
+ size_t(callback_info.external_files.size()));
printf("Unable to copy bundle due to %zu external dependencies:\n",
- (size_t)callback_info.external_files.size());
+ size_t(callback_info.external_files.size()));
for (const std::string &path : callback_info.external_files) {
printf(" \"%s\"\n", path.c_str());
}