svn commit: r360653 - in stable: 11/share/man/man9 12/share/man/man9
John Baldwin
jhb at FreeBSD.org
Tue May 5 04:42:48 UTC 2020
Author: jhb
Date: Tue May 5 04:42:47 2020
New Revision: 360653
URL: https://svnweb.freebsd.org/changeset/base/360653
Log:
MFC 357062: Correct the return types of fueword*().
Modified:
stable/11/share/man/man9/fetch.9
Directory Properties:
stable/11/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/12/share/man/man9/fetch.9
Directory Properties:
stable/12/ (props changed)
Modified: stable/11/share/man/man9/fetch.9
==============================================================================
--- stable/11/share/man/man9/fetch.9 Tue May 5 04:37:05 2020 (r360652)
+++ stable/11/share/man/man9/fetch.9 Tue May 5 04:42:47 2020 (r360653)
@@ -34,7 +34,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd October 29, 2014
+.Dd January 23, 2020
.Dt FETCH 9
.Os
.Sh NAME
@@ -62,11 +62,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
.Ft int
More information about the svn-src-stable-11
mailing list