Author: adrian
Date: Tue Jan 8 22:42:15 2013
New Revision: 245190
URL: http://svnweb.freebsd.org/changeset/base/245190
Log:
Fix format size.
Modified:
head/sys/dev/ath/if_ath_spectral.c
Modified: head/sys/dev/ath/if_ath_spectral.c
==============================================================================
--- head/sys/dev/ath/if_ath_spectral.c Tue Jan 8 22:30:12 2013
(r245189)
+++ head/sys/dev/ath/if_ath_spectral.c Tue Jan 8 22:42:15 2013
(r245190)
@@ -251,7 +251,7 @@ ath_ioctl_spectral(struct ath_softc *sc,
if (insize < sizeof(int)) {
device_printf(sc->sc_dev, "%d != %d\n",
insize,
- sizeof(int));
+ (int) sizeof(int));
error = EINVAL;
break;
}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"