Package: libusb Version: 2:0.1.11-1 Severity: serious Hi,
Your package is failing to build on a few arches with the following error: gcc -DHAVE_CONFIG_H -I. -Werror -Wall -g -O2 -MT linux.lo -MD -MP -MF .deps/linux.Tpo -c ../linux.c -fPIC -DPIC -o .libs/linux.o cc1: warnings being treated as errors ../linux.c: In function 'usb_os_determine_children': ../linux.c:568: warning: format '%d' expects type 'int', but argument 3 has typ e 'long unsigned int' make[3]: *** [linux.lo] Error 1 It's trying to print a sizeof(), which is a size_t. The proper way to print a size_t is either "%zd" or "%zu". Kurt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

