svn commit: r308102 - stable/11/sys/kern

Konstantin Belousov kib at FreeBSD.org
Sun Oct 30 11:42:06 UTC 2016


Author: kib
Date: Sun Oct 30 11:42:05 2016
New Revision: 308102
URL: https://svnweb.freebsd.org/changeset/base/308102

Log:
  MFC r307821:
  Use proper type for local variable.
  
  PR:	212520

Modified:
  stable/11/sys/kern/subr_uio.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/kern/subr_uio.c
==============================================================================
--- stable/11/sys/kern/subr_uio.c	Sun Oct 30 09:38:10 2016	(r308101)
+++ stable/11/sys/kern/subr_uio.c	Sun Oct 30 11:42:05 2016	(r308102)
@@ -532,7 +532,7 @@ fueword32(volatile const void *base, int
 int
 fueword64(volatile const void *base, int64_t *val)
 {
-	int32_t res;
+	int64_t res;
 
 	res = fuword64(base);
 	if (res == -1)


More information about the svn-src-all mailing list