X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/362099a51230fd80c6d54ef6f0e72927529c8dfb..6abd193fe3f8e7b986c388e7642adc08516e8279:/flist.c diff --git a/flist.c b/flist.c index fcc6a53a..2bc20697 100644 --- a/flist.c +++ b/flist.c @@ -310,8 +310,8 @@ static void send_file_entry(struct file_struct *file,int f,unsigned base_flags) write_int(f,(int)file->inode); } else { /* 64-bit dev_t and ino_t */ - write_longint(f, (int64) file->dev); - write_longint(f, (int64) file->inode); + write_longint(f, file->dev); + write_longint(f, file->inode); } } #endif