Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Nov 2002 21:58:25 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 21479 for review
Message-ID:  <200211250558.gAP5wPd2045059@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=21479

Change 21479 by marcel@marcel_nfs on 2002/11/24 21:58:19

	Fix for loop. Forgot to commit this prior to merging to CVS...

Affected files ...

.. //depot/projects/ia64/sys/ia64/ia64/mca.c#6 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/ia64/mca.c#6 (text+ko) ====

@@ -186,7 +186,7 @@
 	 * under unreliable conditions.
 	 */
 	max_size = 0;
-	for (i = 0; i <= SAL_INFO_TYPES; i++) {
+	for (i = 0; i < SAL_INFO_TYPES; i++) {
 		result = ia64_sal_entry(SAL_GET_STATE_INFO_SIZE, i, 0, 0, 0,
 		    0, 0, 0);
 		if (result.sal_status == 0) {

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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