From 644046f064d73ff97f95a7dfbc5fca199f0dd973 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 21 Apr 2011 17:22:44 -0700 Subject: Fix compiler warning in debug message. --- source3/printing/print_cups.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c index e3b08b7d2e..da42cb6f85 100644 --- a/source3/printing/print_cups.c +++ b/source3/printing/print_cups.c @@ -127,7 +127,7 @@ static bool send_pcap_blob(DATA_BLOB *pcap_blob, int fd) return false; } - DEBUG(10, ("successfully sent blob of len %ld\n", (int64_t)ret)); + DEBUG(10, ("successfully sent blob of len %d\n", (int)ret)); return true; } @@ -152,7 +152,7 @@ static bool recv_pcap_blob(TALLOC_CTX *mem_ctx, int fd, DATA_BLOB *pcap_blob) return false; } - DEBUG(10, ("successfully recvd blob of len %ld\n", (int64_t)ret)); + DEBUG(10, ("successfully recvd blob of len %d\n", (int)ret)); return true; } -- cgit