RtlCountLeadingZeroes64() should take 64bit value
Todas las comprobaciones han sido exitosas
Builds / ExectOS (i686) (push) Successful in 29s
Builds / ExectOS (amd64) (push) Successful in 31s

Este commit está contenido en:
Rafal Kupiec 2024-03-23 00:36:59 +01:00
padre 9aff665d1a
commit 74b2c80869
Firmado por: belliash
ID de clave GPG: 4E829243E0CFE6B4
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -221,7 +221,7 @@ RtlCountLeadingZeroes32(IN ULONG Value);
XTAPI
INT
RtlCountLeadingZeroes64(IN ULONG Value);
RtlCountLeadingZeroes64(IN ULONGLONG Value);
XTAPI
INT

Ver fichero

@ -81,7 +81,7 @@ RtlCountLeadingZeroes32(IN ULONG Value)
*/
XTAPI
INT
RtlCountLeadingZeroes64(IN ULONG Value)
RtlCountLeadingZeroes64(IN ULONGLONG Value)
{
/* Return a number of leading zero bits */
return __builtin_clzll(Value);