When using xine/libxine and trying to change the volume, one will receive errors such as the following in their dmesg: WARNING pid 56010 (xine): ioctl sign-extension ioctl ffffffffc0044d04 This is because libxine uses int for the request argument to ioctl(2). This is not a problem on i386, since sizeof(int) == sizeof(long). However, on amd64, where long is larger than int, it is a problem. Fix: Apply the following patch: How-To-Repeat: Use xine and try to change the volume with its interface.
Responsible Changed From-To: freebsd-ports-bugs->nobutaka Over to maintainer
State Changed From-To: open->closed Committed, thanks!