diff options
Diffstat (limited to 'source3/client')
-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 87ca3245c1..d8cf43e652 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -388,7 +388,7 @@ static void initarbuf(void) { /* initialize tar buffer */ tbufsiz=blocksize*TBLOCK; - tarbuf=SMB_MALLOC(tbufsiz); /* FIXME: We might not get the buffer */ + tarbuf=(char *)SMB_MALLOC(tbufsiz); /* FIXME: We might not get the buffer */ /* reset tar buffer pointer and tar file counter and total dumped */ tp=0; ntarf=0; ttarf=0; |