From 199eb31cc99904b5a45cb1042dc14283b24cdb61 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 10 Apr 2008 00:44:25 +0200 Subject: vlp: fix an implicit cast compile warning. Michael (This used to be commit bf46f614c497110dcc3fc79f610fcc7a8784dbb2) --- testsuite/printing/vlp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'testsuite') diff --git a/testsuite/printing/vlp.c b/testsuite/printing/vlp.c index 5c8dcd92eb2..15459889e9f 100644 --- a/testsuite/printing/vlp.c +++ b/testsuite/printing/vlp.c @@ -256,7 +256,8 @@ static int print_command(int argc, char **argv) /* Add job to end of queue */ - queue.dptr = SMB_MALLOC(value.dsize + sizeof(struct vlp_job)); + queue.dptr = (unsigned char *)SMB_MALLOC(value.dsize + + sizeof(struct vlp_job)); if (!queue.dptr) return 1; memcpy(queue.dptr, value.dptr, value.dsize); -- cgit v1.2.1