On Thu, 27 Jan 2011, Davidlohr Bueso wrote: > From: Davidlohr Bueso <dave@xxxxxxx> > > When compiling this program the functionfs.h header cannot be found, producing: > ffs-test.c:40: fatal error: linux/usb/functionfs.h: No such file or directory > > This patch also fixes the following warning: > ffs-test.c:453: warning: format â??%4dâ?? expects type â??intâ??, but argument 3 has type â??size_tâ?? > @@ -450,7 +450,7 @@ invalid: > len, expected, *p); > for (p = buf, len = 0; len < nbytes; ++p, ++len) { > if (0 == (len % 32)) > - fprintf(stderr, "%4d:", len); > + fprintf(stderr, "%4ld:", len); Since len's type is size_t, shouldn't the format be %4z? Alan Stern -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html