Skip to content

Commit

Permalink
Bug fix for string conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelliu-adsk committed Jul 26, 2023
1 parent d9e1001 commit 2725e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mayaUsd/fileio/primWriterRegistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ UsdMayaPrimWriterRegistry::WriterFactoryFn UsdMayaPrimWriterRegistry::Find(
// if nothing was found and nothing was registered, we at least put it in
// the registry in case we encounter it again.
TF_DEBUG(PXRUSDMAYA_REGISTRY)
.Msg("No usdMaya writer plugin for TfType %s. No maya plugin.\n", mayaTypeName);
.Msg("No usdMaya writer plugin for TfType %s. No maya plugin.\n", mayaTypeName.c_str());
if (_reg.count(mayaTypeName) == 0) {
// Nothing registered at all, remember that:
_reg.insert(std::make_pair(
Expand Down

0 comments on commit 2725e96

Please sign in to comment.