PERFORCE change 104127 for review

John Birrell jb at FreeBSD.org
Tue Aug 15 21:31:15 UTC 2006


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

Change 104127 by jb at jb_freebsd2 on 2006/08/15 21:29:06

	Make an argument match the format type.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/cmd/sgs/tools/common/sgsmsg.c#4 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/cmd/sgs/tools/common/sgsmsg.c#4 (text) ====

@@ -553,7 +553,7 @@
 			return (1);
 		}
 		if (fddefs && fprintf(fddefs, "#define\t%s_SIZE\t%d\n",
-		    msg->ms_defn, strlen(msg->ms_message)) < 0) {
+		    msg->ms_defn, (int) strlen(msg->ms_message)) < 0) {
 			(void) fprintf(stderr, Errmsg_wrte,
 			    fldefs, strerror(errno));
 			return (1);


More information about the p4-projects mailing list