summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJulian Smith <jules@op59.net>2019-11-21 18:39:21 +0000
committerJulian Smith <jules@op59.net>2019-11-22 16:09:48 +0000
commit17a947dcc56fee115d7b416de7648289b04185f8 (patch)
tree39eafd2c6092c3760a9111d2d4261004a69cd3f4 /contrib
parentcbd8765cc2e5d67eae3d412a7584f37a9e02f2e9 (diff)
downloadghostpdl-17a947dcc56fee115d7b416de7648289b04185f8.tar.gz
Fix some -W -Wall warnings about printf format type mismatches.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/gdevhl12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gdevhl12.c b/contrib/gdevhl12.c
index 481d2a7ad..9f4d617cb 100644
--- a/contrib/gdevhl12.c
+++ b/contrib/gdevhl12.c
@@ -481,7 +481,7 @@ hl1250_compress_band(gp_file * prn_stream, hl1250_state_t * s, unsigned int band
break;
}
if (s->out_count) {
- gp_fprintf(prn_stream, "\033*b%uW", s->out_count * sizeof(u16) + 9);
+ gp_fprintf(prn_stream, "\033*b%luW", s->out_count * sizeof(u16) + 9);
put_be16(prn_stream, s->out_count * sizeof(u16) + 7);
put_be16(prn_stream, s->xl * 16);
put_be16(prn_stream, band + ytop);