Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Jan 2013 22:42:16 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r245190 - head/sys/dev/ath
Message-ID:  <201301082242.r08MgGcB033660@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 			}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301082242.r08MgGcB033660>