diff options
author | Jeremy Allison <jra@samba.org> | 2011-04-21 17:22:44 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-04-21 17:22:44 -0700 |
commit | 644046f064d73ff97f95a7dfbc5fca199f0dd973 (patch) | |
tree | df2c0194ca4a54204890d521d10686c4e492b463 | |
parent | 20baa11f33c5282c609258e21a07c7255df7ae30 (diff) | |
download | samba-644046f064d73ff97f95a7dfbc5fca199f0dd973.tar.gz samba-644046f064d73ff97f95a7dfbc5fca199f0dd973.tar.bz2 samba-644046f064d73ff97f95a7dfbc5fca199f0dd973.zip |
Fix compiler warning in debug message.
-rw-r--r-- | source3/printing/print_cups.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |