Skip to content

Commit

Permalink
Fix uint usage in __cpuidex()
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jun 6, 2024
1 parent 7d63df1 commit 7fb0eb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ unsigned __int64 _xgetbv(unsigned int index)
}
#endif
#if defined(__MINGW32__)
void __cpuidex(uint CPUInfo[4], uint function_id, uint subfunction_id)
void __cpuidex(unsigned int CPUInfo[4], unsigned int function_id, unsigned int subfunction_id)
{
__asm__ __volatile__(
"cpuid"
Expand Down

0 comments on commit 7fb0eb8

Please sign in to comment.