diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbget.c b/source3/utils/smbget.c index 4a2670e0c1..83677359fe 100644 --- a/source3/utils/smbget.c +++ b/source3/utils/smbget.c @@ -388,7 +388,7 @@ int smb_download_file(const char *base, const char *name, int recursive, int res offset_check = 0; } - readbuf = SMB_MALLOC(blocksize); + readbuf = (char *)SMB_MALLOC(blocksize); /* Now, download all bytes from offset_download to the end */ for(curpos = offset_download; curpos < remotestat.st_size; curpos+=blocksize) { |