summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorbenlees <30915554+benlees@users.noreply.github.com>2018-07-08 10:15:26 +1000
committerGitHub <noreply@github.com>2018-07-08 10:15:26 +1000
commiteadeefa22db93ebc7ec03586246518c9eb6fd395 (patch)
tree0ccff48df9a0812d0aa53b3bb96f017e7eb31f18 /filter
parent77094a212dcb177407e22661ca474b7e70614d3a (diff)
downloadcups-eadeefa22db93ebc7ec03586246518c9eb6fd395.tar.gz
Correct page height for Zebra CPCL output
PAGE-HEIGHT is being set to cupsWidth rather than cupsHeight.
Diffstat (limited to 'filter')
-rw-r--r--filter/rastertolabel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/rastertolabel.c b/filter/rastertolabel.c
index 55501b715..a5ac46646 100644
--- a/filter/rastertolabel.c
+++ b/filter/rastertolabel.c
@@ -299,7 +299,7 @@ StartPage(ppd_file_t *ppd, /* I - PPD file */
header->HWResolution[1], header->cupsHeight,
header->NumCopies);
printf("PAGE-WIDTH %u\r\n", header->cupsWidth);
- printf("PAGE-HEIGHT %u\r\n", header->cupsWidth);
+ printf("PAGE-HEIGHT %u\r\n", header->cupsHeight);
break;
case INTELLITECH_PCL :