whitespace and string_view fixes

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-06-30 18:59:11 -07:00
parent 7b149e6f90
commit 59f4e865a4
3 changed files with 5 additions and 7 deletions
@@ -277,7 +277,7 @@ namespace ScriptCanvasBuilder
if (!resultFound)
{
return AZ::Failure(AZStd::string::format("LoadEditorAssetTree failed to get engine relative path from %s-%s.", editorAssetId.ToString<AZStd::string>().c_str(), assetHint.data()));
return AZ::Failure(AZStd::string::format("LoadEditorAssetTree failed to get engine relative path from %s-%.*s.", editorAssetId.ToString<AZStd::string>().c_str(), assetHint.size(), assetHint.data()));
}
AZStd::vector<AZ::Data::AssetId> dependentAssets;