Linux: Fixed wrong return type in LinuxEvent.nGetKeyAddress

This commit is contained in:
Elias Naur 2007-01-17 08:16:16 +00:00
parent d3f6588580
commit 4b13bb10d3
2 changed files with 4 additions and 3 deletions

View file

@ -149,7 +149,7 @@ final class LinuxEvent {
public final long getKeyAddress() {
return nGetKeyAddress(event_buffer);
}
private static native int nGetKeyAddress(ByteBuffer event_buffer);
private static native long nGetKeyAddress(ByteBuffer event_buffer);
public final long getKeyTime() {
return nGetKeyTime(event_buffer);