We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please change line 316 in PcapNetworkInterface.java from: if (Pointer.SIZE == 4) { to if (Native.POINTER_SIZE == 4) {
if (Pointer.SIZE == 4) {
if (Native.POINTER_SIZE == 4) {
This is compatible with JNA 4.x.
The text was updated successfully, but these errors were encountered:
#191: Change to use Native.POINTER_SIZE instead of Pointer.SIZE that …
c38c8a3
…is deprecated in JNA 5.
Thank you for the information.
I fixed it and released .7.4 and 2.0.0-alpha.1 with the fix.
Sorry, something went wrong.
No branches or pull requests
Please change line 316 in PcapNetworkInterface.java from:
if (Pointer.SIZE == 4) {
to
if (Native.POINTER_SIZE == 4) {
This is compatible with JNA 4.x.
The text was updated successfully, but these errors were encountered: