From fe2681dd4bbc296de371c7140cd8cee172397777 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 5 Oct 1998 12:34:43 +0000 Subject: fixed a cast warning (This used to be commit 4093bb16d20b0057e07085f061bdcfb372c679c1) --- source3/client/clitar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') 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; -- cgit