Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Nov 2015 12:33:30 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290493 - head/sys/sys
Message-ID:  <201511071233.tA7CXUKP032030@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sat Nov  7 12:33:30 2015
New Revision: 290493
URL: https://svnweb.freebsd.org/changeset/base/290493

Log:
  Correct the argument type in the sysctl_add_oid(9) prototype.  On
  ILP32 machines, intptr_t and intmax_t are different types.
  
  Submitted by:	skra

Modified:
  head/sys/sys/sysctl.h

Modified: head/sys/sys/sysctl.h
==============================================================================
--- head/sys/sys/sysctl.h	Sat Nov  7 12:30:43 2015	(r290492)
+++ head/sys/sys/sysctl.h	Sat Nov  7 12:33:30 2015	(r290493)
@@ -949,7 +949,7 @@ extern char	kern_ident[];
 /* Dynamic oid handling */
 struct sysctl_oid *sysctl_add_oid(struct sysctl_ctx_list *clist,
 	    struct sysctl_oid_list *parent, int nbr, const char *name, int kind,
-	    void *arg1, intptr_t arg2, int (*handler)(SYSCTL_HANDLER_ARGS),
+	    void *arg1, intmax_t arg2, int (*handler)(SYSCTL_HANDLER_ARGS),
 	    const char *fmt, const char *descr);
 int	sysctl_remove_name(struct sysctl_oid *parent, const char *name, int del,
 	    int recurse);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511071233.tA7CXUKP032030>