Skip to content

Commit

Permalink
Merge pull request #1 from benlees/patch-1
Browse files Browse the repository at this point in the history
Correct page height for Zebra CPCL output
  • Loading branch information
benlees authored Jul 8, 2018
2 parents 77094a2 + eadeefa commit 04e7ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter/rastertolabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 :
Expand Down

0 comments on commit 04e7ecd

Please sign in to comment.