Skip to content

Commit

Permalink
set the return type to match the definition in InternalCalls.cs - and…
Browse files Browse the repository at this point in the history
… return the value. (#79538)
  • Loading branch information
yowl authored Dec 12, 2022
1 parent 853e7e3 commit ddb91f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/nativeaot/Runtime/MiscHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ EXTERN_C NATIVEAOT_API void __cdecl RhpReleaseThunkPoolLock()
g_ThunkPoolLock.Leave();
}

EXTERN_C NATIVEAOT_API void __cdecl RhpGetTickCount64()
EXTERN_C NATIVEAOT_API uint64_t __cdecl RhpGetTickCount64()
{
PalGetTickCount64();
return PalGetTickCount64();
}

EXTERN_C int32_t __cdecl RhpCalculateStackTraceWorker(void* pOutputBuffer, uint32_t outputBufferLength, void* pAddressInCurrentFrame);
Expand Down

0 comments on commit ddb91f5

Please sign in to comment.