aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cmd/draw/crop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd/draw/crop.c b/src/cmd/draw/crop.c
index 6ec03b79..10a08f77 100644
--- a/src/cmd/draw/crop.c
+++ b/src/cmd/draw/crop.c
@@ -35,12 +35,12 @@ getint(char *s)
}
Rectangle
-crop(Memimage *m, ulong c)
+crop(Memimage *m, uint32 c)
{
Memimage *n;
int x, y, bpl, wpl;
int left, right, top, bottom;
- ulong *buf;
+ uint32 *buf;
left = m->r.max.x;
right = m->r.min.x;
@@ -90,7 +90,7 @@ main(int argc, char *argv[])
Point t;
Memimage *m, *new;
char *file;
- ulong bg, cropval;
+ uint32 bg, cropval;
long dw;
memimageinit();