aboutsummaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/scat/display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/scat/display.c b/src/cmd/scat/display.c
index 486d5303..9af012ea 100644
--- a/src/cmd/scat/display.c
+++ b/src/cmd/scat/display.c
@@ -38,7 +38,7 @@ displaypic(Picture *pic)
/* release the memory as we hand it off; this could be a big piece of data */
a = pic->data;
while(n > 0){
- i = 8192 - (((int)a)&8191);
+ i = 8192 - (((uintptr)a)&8191);
if(i > n)
i = n;
if(write(p[1], a, i)!=i)