svn commit: r307401 - head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid
Mark Johnston
markj at FreeBSD.org
Sun Oct 16 19:50:11 UTC 2016
Author: markj
Date: Sun Oct 16 19:50:10 2016
New Revision: 307401
URL: https://svnweb.freebsd.org/changeset/base/307401
Log:
Fix tst.args1.c on LP64 platforms.
The untyped probe arguments have a width larger than int on such platforms,
so printing their value without a cast can give unexpected results.
MFC after: 1 week
Modified:
head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.args1.c
Modified: head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.args1.c
==============================================================================
--- head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.args1.c Sun Oct 16 19:46:55 2016 (r307400)
+++ head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.args1.c Sun Oct 16 19:50:10 2016 (r307401)
@@ -31,8 +31,8 @@
#include <unistd.h>
int
-go(int arg0, int arg1, int arg2, int arg3, int arg4, int arg5, int arg6,
- int arg7, int arg8, int arg9)
+go(long arg0, long arg1, long arg2, long arg3, long arg4, long arg5, long arg6,
+ long arg7, long arg8, long arg9)
{
return (arg1);
}
More information about the svn-src-all
mailing list