Skip to content

Commit

Permalink
Merge branch 'ulonglong' of https://github.com/dbwiddis/jna into byre…
Browse files Browse the repository at this point in the history
…f-tostrings
  • Loading branch information
dbwiddis committed Apr 25, 2020
2 parents a579e65 + ee7fb5c commit 29183b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Features
Bug Fixes
---------
* [#1183](https://github.com/java-native-access/jna/pull/1183): `c.s.j.p.win32.WinDef.CHARByReference#getValue` should only read one byte - [@dbwiddis](https://github.com/dbwiddis).
* [#1184](https://github.com/java-native-access/jna/pull/1184): `c.s.j.p.win32.WinDef.ULONGLONG` should always be 8 bytes - [@dbwiddis](https://github.com/dbwiddis).


Release 5.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ public String toString() {
public static class ULONGLONG extends IntegerType implements Comparable<ULONGLONG> {

/** The Constant SIZE. */
public static final int SIZE = Native.LONG_SIZE *2;
public static final int SIZE = 8;

/**
* Instantiates a new ULONGLONG.
Expand Down

0 comments on commit 29183b8

Please sign in to comment.