Skip to content

Commit

Permalink
fix x86 test build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
davmason committed Jun 26, 2020
1 parent 87ceca4 commit 0cc9a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/tests/src/profiler/native/profiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class Profiler : public ICorProfilerCallback10
ThreadID eventThread,
ULONG numStackFrames,
UINT_PTR stackFrames[]) override;
HRESULT EventPipeProviderCreated(EVENTPIPE_PROVIDER provider) override;
HRESULT STDMETHODCALLTYPE EventPipeProviderCreated(EVENTPIPE_PROVIDER provider) override;

HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void **ppvObject) override;
ULONG STDMETHODCALLTYPE AddRef(void) override;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/tests/src/profiler/native/profilerstring.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class String
printBuffer = new wchar_t[bufferLen];
}

for (int i = 0; i < bufferLen; ++i)
for (size_t i = 0; i < bufferLen; ++i)
{
printBuffer[i] = (wchar_t)buffer[i];
}
Expand Down

0 comments on commit 0cc9a28

Please sign in to comment.