It also corrects a bug as a "void *" (sizeof() = 8) cannot be assigned
to an "int" (sizeof() = 4) on an 64bit system. We must use
"long" (sizeof() = 8).

See in the patch, the part hfsplus-1.0.4/libhfsp/src/os.c:
[...]
-  int fd = (int) *priv;
+  long fd = (long) *priv;
[...]




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to