fusefat.c:230: warning: cast to pointer from integer of different size
caused by F=(File_t *)fi->fh;
sizeof(fh) == 8, and sizeof(F) == 4 (on i386). The fix is easy... cast it to long. I'm not aware of any arch's where sizeof(long) != sizeof(void *).
Patch below.
patch
Log in to post a comment.
patch