PERFORCE change 96110 for review

John Birrell jb at FreeBSD.org
Tue Apr 25 22:17:19 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=96110

Change 96110 by jb at jb_freebsd2 on 2006/04/25 22:16:31

	Make the last initialiser match the number of fields in the structure.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/lib/libdtrace/common/dt_options.c#4 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/lib/libdtrace/common/dt_options.c#4 (text) ====

@@ -889,7 +889,7 @@
 	{ "verbose", dt_opt_cflags, DTRACE_C_DIFV },
 	{ "version", dt_opt_version },
 	{ "zdefs", dt_opt_cflags, DTRACE_C_ZDEFS },
-	{ NULL }
+	{ NULL, NULL, 0 }
 };
 
 /*
@@ -913,7 +913,7 @@
 	{ "statusrate", dt_opt_rate, DTRACEOPT_STATUSRATE },
 	{ "strsize", dt_opt_strsize, DTRACEOPT_STRSIZE },
 	{ "ustackframes", dt_opt_runtime, DTRACEOPT_USTACKFRAMES },
-	{ NULL }
+	{ NULL, NULL, 0 }
 };
 
 /*
@@ -930,7 +930,7 @@
 	{ "rawbytes", dt_opt_runtime, DTRACEOPT_RAWBYTES },
 	{ "stackindent", dt_opt_runtime, DTRACEOPT_STACKINDENT },
 	{ "switchrate", dt_opt_rate, DTRACEOPT_SWITCHRATE },
-	{ NULL }
+	{ NULL, NULL, 0 }
 };
 
 int


More information about the p4-projects mailing list