aboutsummaryrefslogtreecommitdiffstats
path: root/tls.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-01-04 07:06:05 +0000
committerWayne Davison <wayned@samba.org>2004-01-04 07:06:05 +0000
commitf358487f8eb5b8e7eb52177a1896816bce58139b (patch)
tree2f2718d543f1fa04878738db21eb6d938a1f5b7c /tls.c
parenta18381aca61b8a73d7fd6afa3dc66267fc03cf5c (diff)
downloadandroid_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.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/tls.c b/tls.c
index 1903e1f7..5facf2e8 100644
--- a/tls.c
+++ b/tls.c
@@ -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);
}