svn commit: r245190 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Tue Jan 8 22:42:16 UTC 2013


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;
 			}


More information about the svn-src-all mailing list