diff options
| author | Wayne Davison <wayned@samba.org> | 2004-01-04 07:06:05 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2004-01-04 07:06:05 +0000 |
| commit | f358487f8eb5b8e7eb52177a1896816bce58139b (patch) | |
| tree | 2f2718d543f1fa04878738db21eb6d938a1f5b7c /tls.c | |
| parent | a18381aca61b8a73d7fd6afa3dc66267fc03cf5c (diff) | |
| download | android_external_rsync-f358487f8eb5b8e7eb52177a1896816bce58139b.tar.gz android_external_rsync-f358487f8eb5b8e7eb52177a1896816bce58139b.tar.bz2 android_external_rsync-f358487f8eb5b8e7eb52177a1896816bce58139b.zip | |
Silence a compiler warning on Sun OS systems.
Diffstat (limited to 'tls.c')
| -rw-r--r-- | tls.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -116,10 +116,9 @@ static void list_file (const char *fname) /* NB: need to pass size as a double because it might be be * too large for a long. */ - printf("%s %12.0f %6ld.%-6ld %6d %s %s%s\n", - permbuf, (double) buf.st_size, - (long) buf.st_uid, (long) buf.st_gid, - buf.st_nlink, + printf("%s %12.0f %6ld.%-6ld %6ld %s %s%s\n", + permbuf, (double)buf.st_size, (long)buf.st_uid, + (long)buf.st_gid, (long)buf.st_nlink, datebuf, fname, linkbuf); } |
