diff options
author | Renato Botelho <renato@netgate.com> | 2016-11-02 10:47:11 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-11-02 10:47:11 -0200 |
commit | 3c84ef4df7f599fdf9db66521c3d33c167458687 (patch) | |
tree | 95795d4a6304e89128b277db8769df4a7d074fa4 /sys/kern/subr_uio.c | |
parent | eb2387fb3f25275b8ca223e3c464563294982bde (diff) | |
parent | 3944e88fda9dc9f4f391a06b18cd7583f783e8ec (diff) | |
download | FreeBSD-src-3c84ef4df7f599fdf9db66521c3d33c167458687.zip FreeBSD-src-3c84ef4df7f599fdf9db66521c3d33c167458687.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'sys/kern/subr_uio.c')
-rw-r--r-- | sys/kern/subr_uio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_uio.c b/sys/kern/subr_uio.c index 8141958..a335f6d 100644 --- a/sys/kern/subr_uio.c +++ b/sys/kern/subr_uio.c @@ -534,7 +534,7 @@ fueword32(volatile const void *base, int32_t *val) int fueword64(volatile const void *base, int64_t *val) { - int32_t res; + int64_t res; res = fuword64(base); if (res == -1) |