fix unsigned int to long conversion
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1155340 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0e3a966465
commit
33a1542335
@ -118,7 +118,7 @@ public class LittleEndian implements LittleEndianConsts {
|
|||||||
*/
|
*/
|
||||||
public static long getUInt(byte[] data, int offset) {
|
public static long getUInt(byte[] data, int offset) {
|
||||||
long retNum = getInt(data, offset);
|
long retNum = getInt(data, offset);
|
||||||
return retNum & 0x00FFFFFFFF;
|
return retNum & 0x00FFFFFFFFl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user