From 03fd4409c7ac56c324bd10203ab16d952dc1f8ee Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 23 Jan 2020 23:36:58 +0000 Subject: [PATCH] Correct the return types of fueword*(). MFC after: 1 week Sponsored by: DARPA --- share/man/man9/fetch.9 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/man/man9/fetch.9 b/share/man/man9/fetch.9 index 778b80c98cf6..5384c4f9204e 100644 --- a/share/man/man9/fetch.9 +++ b/share/man/man9/fetch.9 @@ -34,7 +34,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 17, 2018 +.Dd January 23, 2020 .Dt FETCH 9 .Os .Sh NAME @@ -61,11 +61,11 @@ .Fn fuword32 "volatile const void *base" .Ft int64_t .Fn fuword64 "volatile const void *base" -.Ft long +.Ft int .Fn fueword "volatile const void *base" "long *val" -.Ft int32_t +.Ft int .Fn fueword32 "volatile const void *base" "int32_t *val" -.Ft int64_t +.Ft int .Fn fueword64 "volatile const void *base" "int64_t *val" .In sys/resourcevar.h .Sh DESCRIPTION