Skip to content

Commit

Permalink
EMSUSD-243 fixing warning arguments order.
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrebai-adsk committed Jul 4, 2023
1 parent 7912e8c commit e3b0935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/usdUfe/ufe/UsdUndoAddRefOrPayloadCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ getPrimPath(const UsdPrim& prim, const std::string& filePath, const std::string&
SdfPrimSpecHandle primSpec = layerRef->GetPrimAtPath(SdfPath(primName.GetText()));
const std::string errorMessage = validatePrimSpec(prim, primSpec);
if (!errorMessage.empty())
TF_WARN("The default prim in file [%s] %s.", errorMessage.c_str(), filePath.c_str());
TF_WARN("The default prim in file [%s] %s.", filePath.c_str(), errorMessage.c_str());
return SdfPath();
}

Expand Down

0 comments on commit e3b0935

Please sign in to comment.