svn commit: r308103 - stable/10/sys/kern
Konstantin Belousov
kib at FreeBSD.org
Sun Oct 30 11:45:02 UTC 2016
Author: kib
Date: Sun Oct 30 11:45:01 2016
New Revision: 308103
URL: https://svnweb.freebsd.org/changeset/base/308103
Log:
MFC r307821:
Use proper type for local variable.
PR: 212520
Modified:
stable/10/sys/kern/subr_uio.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/kern/subr_uio.c
==============================================================================
--- stable/10/sys/kern/subr_uio.c Sun Oct 30 11:42:05 2016 (r308102)
+++ stable/10/sys/kern/subr_uio.c Sun Oct 30 11:45:01 2016 (r308103)
@@ -534,7 +534,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-stable-10
mailing list