summaryrefslogtreecommitdiff
path: root/sys/src/cmd/page.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2013-01-21 11:09:47 +0100
committercinap_lenrek <cinap_lenrek@gmx.de>2013-01-21 11:09:47 +0100
commite18b9f6fd2f37013abc6a1a2ae3b06f88df6426e (patch)
tree27e516987a17e779bb840a5323182737c1ade62e /sys/src/cmd/page.c
parentd789b1cc917839f70f582a7bf90c28099fbca8db (diff)
tga: fix bad output channel descriptor for grayscale images and -9 flag, revert page work arround
Diffstat (limited to 'sys/src/cmd/page.c')
-rw-r--r--sys/src/cmd/page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/page.c b/sys/src/cmd/page.c
index 7e040f31c..c7170cc3e 100644
--- a/sys/src/cmd/page.c
+++ b/sys/src/cmd/page.c
@@ -294,7 +294,7 @@ popenimg(Page *p)
if(strcmp(p->ext, "ico") == 0)
snprint(nam, sizeof(nam), "%s -c", p->ext);
else
- snprint(nam, sizeof(nam), "%s -t39", p->ext);
+ snprint(nam, sizeof(nam), "%s -t9", p->ext);
pipeline(fd, "%s", nam);
}