svn commit: r315601 - head/lib/libkvm

Ngie Cooper ngie at FreeBSD.org
Mon Mar 20 01:19:06 UTC 2017


Author: ngie
Date: Mon Mar 20 01:19:04 2017
New Revision: 315601
URL: https://svnweb.freebsd.org/changeset/base/315601

Log:
  kvm_open2(3): remove '*' when describing addr argument for `resolver`
  
  As noted by vangyzen, with a similar issue in D10022, the pointer portion of
  the .Fa macro call is unnecessary, so remove the '*'.
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/libkvm/kvm_open.3

Modified: head/lib/libkvm/kvm_open.3
==============================================================================
--- head/lib/libkvm/kvm_open.3	Mon Mar 20 00:55:24 2017	(r315600)
+++ head/lib/libkvm/kvm_open.3	Mon Mar 20 01:19:04 2017	(r315601)
@@ -32,7 +32,7 @@
 .\"     @(#)kvm_open.3	8.3 (Berkeley) 4/19/94
 .\" $FreeBSD$
 .\"
-.Dd November 27, 2015
+.Dd March 19, 2017
 .Dt KVM_OPEN 3
 .Os
 .Sh NAME
@@ -196,7 +196,7 @@ function is called,
 specifies the requested symbol name.
 If the function is able to resolve the name to an address,
 the address should be set in
-.Fa *addr
+.Fa addr
 and the function should return zero.
 If the function is not able to resolve the name to an address,
 it should return a non-zero value.


More information about the svn-src-all mailing list