svn commit: r249798 - head/sys/dev/bktr

Eitan Adler eadler at FreeBSD.org
Tue Apr 23 13:02:52 UTC 2013


Author: eadler
Date: Tue Apr 23 13:02:51 2013
New Revision: 249798
URL: http://svnweb.freebsd.org/changeset/base/249798

Log:
  Make temp, temp1 the same type that they will later be used for.
  
  PR:		kern/176712
  Submitted by:	Hiren Panchasara <hiren.panchasara at gmail.com>
  Reviewed by:	jmg (earlier version)
  Approved by:	cperciva (mentor)

Modified:
  head/sys/dev/bktr/bktr_core.c

Modified: head/sys/dev/bktr/bktr_core.c
==============================================================================
--- head/sys/dev/bktr/bktr_core.c	Tue Apr 23 13:02:48 2013	(r249797)
+++ head/sys/dev/bktr/bktr_core.c	Tue Apr 23 13:02:51 2013	(r249798)
@@ -1936,7 +1936,7 @@ int
 tuner_ioctl( bktr_ptr_t bktr, int unit, ioctl_cmd_t cmd, caddr_t arg, struct thread* td )
 {
 	int		tmp_int;
-	unsigned int	temp, temp1;
+       int             temp, temp1;
 	int		offset;
 	int		count;
 	u_char		*buf;


More information about the svn-src-all mailing list