diff options
author | Tim Potter <tpot@samba.org> | 2003-04-14 04:03:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-14 04:03:39 +0000 |
commit | 9cfa77ae1537ec96479f71dc93097ebb4c83ea01 (patch) | |
tree | 3fd2160fd6eb6e206ca3985ca3a17cc12ba0849a /source3/client | |
parent | 7d01a9b71c87f5715ded803b2c059a4797e9b690 (diff) | |
download | samba-9cfa77ae1537ec96479f71dc93097ebb4c83ea01.tar.gz samba-9cfa77ae1537ec96479f71dc93097ebb4c83ea01.tar.bz2 samba-9cfa77ae1537ec96479f71dc93097ebb4c83ea01.zip |
Merge:
- "Fix lingering large offset problems in smbtar etc."
(This used to be commit ba53df64cab5dc0ea9f2b7d82007bf655f85bc67)
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 579110f75f..dfda997ca2 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -1089,7 +1089,7 @@ static char * get_longfilename(file_info2 finfo) BOOL first = True; DEBUG(5, ("Restoring a long file name: %s\n", finfo.name)); - DEBUG(5, ("Len = %d\n", (int)finfo.size)); + DEBUG(5, ("Len = %.0f\n", (double)finfo.size)); if (longname == NULL) { |