diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-03 03:52:27 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-03 03:52:27 +0100 |
commit | f556fd24378aa50136a8b52344a47881eb6a69eb (patch) | |
tree | 6d3c0ded562a775ebebd75a4e35b2e43d6982d0a | |
parent | bfee76e5d34e893f7af047e6cd4358f5f1fbf428 (diff) |
devdraw: screenid is BGLONG, not BGSHORT
-rw-r--r-- | sys/src/9/port/devdraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/devdraw.c b/sys/src/9/port/devdraw.c index 30258376f..ffb3bdfba 100644 --- a/sys/src/9/port/devdraw.c +++ b/sys/src/9/port/devdraw.c @@ -1465,7 +1465,7 @@ drawmesg(Client *client, void *av, int n) if(n < m) error(Eshortdraw); dstid = BGLONG(a+1); - scrnid = BGSHORT(a+5); + scrnid = BGLONG(a+5); refresh = a[9]; chan = BGLONG(a+10); repl = a[14]; |