Skip to content

Commit aa419f8

Browse files
committed
Don't pass rdcstr through to logging directly
1 parent aa4f8fe commit aa419f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

renderdoc/driver/shaders/dxil/dxil_reflect.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ void Program::FillRayPayloads(
792792
rayPayloads[entryPoint].second = MakePayloadType(typeInfo, ownAttrType);
793793
else
794794
RDCERR("Couldn't find matching attribute type for '%s' by name",
795-
executableAttrType->name);
795+
executableAttrType->name.c_str());
796796
break;
797797
}
798798
}
@@ -839,7 +839,7 @@ void Program::FillRayPayloads(
839839
rayPayloads[entryPoint].first = MakePayloadType(typeInfo, ownPayloadType);
840840
else
841841
RDCERR("Couldn't find matching payload type for '%s' by name",
842-
executablePayloadType->name);
842+
executablePayloadType->name.c_str());
843843

844844
break;
845845
}

0 commit comments

Comments
 (0)