aboutsummaryrefslogtreecommitdiffstats
path: root/flist.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-11-21 08:35:58 +0000
committerWayne Davison <wayned@samba.org>2006-11-21 08:35:58 +0000
commit264042760bd909eeca281dc8c937357e98bf6bf8 (patch)
treeb4c302f4453df23aa47d35d340fbabfe4e537e45 /flist.c
parent1e999f9f1b6940a4b355054b5f15435c3030996c (diff)
downloadandroid_external_rsync-264042760bd909eeca281dc8c937357e98bf6bf8.tar.gz
android_external_rsync-264042760bd909eeca281dc8c937357e98bf6bf8.tar.bz2
android_external_rsync-264042760bd909eeca281dc8c937357e98bf6bf8.zip
Use an explicit cast when a value gets stored in a smaller var.
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/flist.c b/flist.c
index 8b24b0a1..5b80f3e1 100644
--- a/flist.c
+++ b/flist.c
@@ -455,8 +455,8 @@ static void send_file_entry(struct file_struct *file, int f)
if (file->link_u.idev) {
if (protocol_version < 26) {
/* 32-bit dev_t and ino_t */
- write_int(f, dev);
- write_int(f, file->F_INODE);
+ write_int(f, (int32)dev);
+ write_int(f, (int32)file->F_INODE);
} else {
/* 64-bit dev_t and ino_t */
if (!(flags & XMIT_SAME_DEV))
@@ -1450,10 +1450,10 @@ int flist_find(struct file_list *flist, struct file_struct *f)
if (mid_up > high) {
/* If there's nothing left above us, set high to
* a non-empty entry below us and continue. */
- high = mid - flist->files[mid]->length;
+ high = mid - (int)flist->files[mid]->length;
if (!flist->files[high]->basename) {
do {
- high -= flist->files[high]->length;
+ high -= (int)flist->files[high]->length;
} while (!flist->files[high]->basename);
flist->files[mid]->length = mid - high;
}