summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-05 12:34:43 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-05 12:34:43 +0000
commitfe2681dd4bbc296de371c7140cd8cee172397777 (patch)
treef5fffab76ec312b67bde5ff8c18aabdc0263efc7 /source3/client
parentc378ac118028612425e732d54f8855d39c1a2523 (diff)
downloadsamba-fe2681dd4bbc296de371c7140cd8cee172397777.tar.gz
samba-fe2681dd4bbc296de371c7140cd8cee172397777.tar.bz2
samba-fe2681dd4bbc296de371c7140cd8cee172397777.zip
fixed a cast warning
(This used to be commit 4093bb16d20b0057e07085f061bdcfb372c679c1)
Diffstat (limited to 'source3/client')
-rw-r--r--source3/client/clitar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c
index c841ff982c..e9b79baa71 100644
--- a/source3/client/clitar.c
+++ b/source3/client/clitar.c
@@ -1581,7 +1581,7 @@ static int next_block(char *ltarbuf, char **bufferp, int bufsiz)
{
int bufread, total = 0;
- DEBUG(5, ("Advancing to next block: %0x\n", (unsigned int)*bufferp));
+ DEBUG(5, ("Advancing to next block: %0lx\n", (unsigned long)*bufferp));
*bufferp += TBLOCK;
total = TBLOCK;