svn commit: r290384 - head/contrib/libexecinfo

Baptiste Daroussin bapt at FreeBSD.org
Thu Nov 5 07:43:16 UTC 2015


Author: bapt
Date: Thu Nov  5 07:43:15 2015
New Revision: 290384
URL: https://svnweb.freebsd.org/changeset/base/290384

Log:
  Fix typo in the function name
  
  Submitted by:	Sascha Wildner <saw at online.de>
  Obtained from:	DragonflyBSD

Modified:
  head/contrib/libexecinfo/backtrace.3

Modified: head/contrib/libexecinfo/backtrace.3
==============================================================================
--- head/contrib/libexecinfo/backtrace.3	Thu Nov  5 07:26:32 2015	(r290383)
+++ head/contrib/libexecinfo/backtrace.3	Thu Nov  5 07:43:15 2015	(r290384)
@@ -28,7 +28,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd August 23, 2013
+.Dd November 3, 2015
 .Dt BACKTRACE 3
 .Os
 .Sh NAME
@@ -47,7 +47,7 @@
 .Ft "char **"
 .Fn backtrace_symbols_fmt "void * const *addrlist" "size_t len" "const char *fmt"
 .Ft int
-.Fn backtrace_symbols_fmt_fd "void * const *addrlist" "size_t len" "const char *fmt" "int fd"
+.Fn backtrace_symbols_fd_fmt "void * const *addrlist" "size_t len" "const char *fmt" "int fd"
 .Sh DESCRIPTION
 The
 .Fn backtrace
@@ -106,7 +106,7 @@ with a format argument of
 The
 .Fn backtrace_symbols_fd
 and
-.Fn backtrace_symbols_fmt_fd
+.Fn backtrace_symbols_fd_fmt
 are similar to the non _fd named functions, only instead of returning
 an array or strings, they print a new-line separated array of strings in
 fd, and return


More information about the svn-src-head mailing list