diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-05 12:34:43 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-05 12:34:43 +0000 |
commit | fe2681dd4bbc296de371c7140cd8cee172397777 (patch) | |
tree | f5fffab76ec312b67bde5ff8c18aabdc0263efc7 | |
parent | c378ac118028612425e732d54f8855d39c1a2523 (diff) | |
download | samba-fe2681dd4bbc296de371c7140cd8cee172397777.tar.gz samba-fe2681dd4bbc296de371c7140cd8cee172397777.tar.bz2 samba-fe2681dd4bbc296de371c7140cd8cee172397777.zip |
fixed a cast warning
(This used to be commit 4093bb16d20b0057e07085f061bdcfb372c679c1)
-rw-r--r-- | source3/client/clitar.c | 2 |
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; |