Skip to content

Commit

Permalink
fix linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
davmason committed Dec 2, 2020
1 parent 0f4c380 commit a4a5f5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/tests/profiler/native/transitions/transitions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#include "Transitions.h"
#include "transitions.h"

Transitions::Transitions() :
_failures(0),
Expand Down Expand Up @@ -81,6 +81,5 @@ HRESULT Transitions::ManagedToUnmanagedTransition(FunctionID functionID, COR_PRF
bool Transitions::FunctionIsTargetFunction(FunctionID functionID)
{
String name = GetFunctionIDName(functionID);

return name == L"DoPInvoke";
return name == WCHAR("DoPInvoke");
}

0 comments on commit a4a5f5f

Please sign in to comment.