Got rid of signed/unsigned-comparison warning if st_dev is signed.
authorWayne Davison <wayned@samba.org>
Thu, 21 Aug 2003 23:45:49 +0000 (23:45 +0000)
committerWayne Davison <wayned@samba.org>
Thu, 21 Aug 2003 23:45:49 +0000 (23:45 +0000)
receiver.c

index 00160640cf6b238d4fd1ccfb83221db52c4595f9..be433ae1ca526678bd2a84cb6496432e1bf8e443 100644 (file)
@@ -59,7 +59,7 @@ static int delete_already_done(struct file_list *flist,int j)
 
        for (i=0;i<dlist_len;i++) {
                if (st.st_ino == delete_list[i].inode &&
-                   st.st_dev == delete_list[i].dev)
+                   (DEV64_T)st.st_dev == delete_list[i].dev)
                        return 1;
        }