Skip to content

Commit

Permalink
Try #2
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenneuendorffer committed May 24, 2024
1 parent 6ae574e commit d419320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/aie2xclbin/XCLBinGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static std::string getUUIDString() {
RPC_CSTR *uuidstring;
status = UuidToStringA(uuid, uuidstring);
if(status != RPC_S_OK) errs() << "Failed to convert UUID to string\n";
val = std::string(uuidstring);
val = std::string((char *)uuidstring);
status = RpcStringFreeA(uuidstring);
if(status != RPC_S_OK) errs() << "Failed to free UUID string\n";
#else
Expand Down

0 comments on commit d419320

Please sign in to comment.