]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Tue, 18 Dec 2018 21:19:48 +0000 (13:19 -0800)
committerOliver Kurth <okurth@vmware.com>
Tue, 18 Dec 2018 21:19:48 +0000 (13:19 -0800)
open-vm-tools/lib/include/vm_basic_asm.h

index 2add0349e47ba2c9506b7cbd6e8d551135d817f7..51d26d3cfe54fd04ef5329bb55115b85b187be44 100644 (file)
@@ -1331,7 +1331,7 @@ PopCount64(uint64 value)
    value += value >> 8;
    value += value >> 16;
    value += value >> 32;
-   return value & 0xff;
+   return (unsigned) (value & 0xff);
 }