diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-12-10 16:12:18 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-12-10 16:12:18 +0100 |
commit | b3c1fa9ecfbaaacef40f6aa26199cdfd7f6cb9b1 (patch) | |
tree | 99d4b4e0042f7152c620ddba5d61c19499332557 /sys/src/9/port | |
parent | 7a145e89b301a1865661f7a6e60a21731f12824f (diff) |
devmouse: change msec argument of *mousetrack() to ulong
Diffstat (limited to 'sys/src/9/port')
-rw-r--r-- | sys/src/9/port/devmouse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/9/port/devmouse.c b/sys/src/9/port/devmouse.c index 950aff4ce..2572fec6c 100644 --- a/sys/src/9/port/devmouse.c +++ b/sys/src/9/port/devmouse.c @@ -567,7 +567,7 @@ scale(int x) * awaken any waiting procs. */ void -mousetrack(int dx, int dy, int b, int msec) +mousetrack(int dx, int dy, int b, ulong msec) { if(mouse.acceleration){ dx = scale(dx); @@ -577,7 +577,7 @@ mousetrack(int dx, int dy, int b, int msec) } void -absmousetrack(int x, int y, int b, int msec) +absmousetrack(int x, int y, int b, ulong msec) { int lastb; |