Commit d01350a8 authored by Wayne Davison's avatar Wayne Davison

Got rid of signed/unsigned-comparison warning if st_dev is signed.

parent 38b02c13
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment