Author: pbartok
Date: 2006-02-28 16:38:59 -0500 (Tue, 28 Feb 2006)
New Revision: 57434

Modified:
   trunk/libgdiplus/tests/ChangeLog
   trunk/libgdiplus/tests/testbits.c
Log:
2006-02-28  Peter Dennis Bartok  <[EMAIL PROTECTED]>

        * testbits.cs: Fixed bug #144798 (Novell Bugzilla)



Modified: trunk/libgdiplus/tests/ChangeLog
===================================================================
--- trunk/libgdiplus/tests/ChangeLog    2006-02-28 21:30:57 UTC (rev 57433)
+++ trunk/libgdiplus/tests/ChangeLog    2006-02-28 21:38:59 UTC (rev 57434)
@@ -1,3 +1,7 @@
+2006-02-28  Peter Dennis Bartok  <[EMAIL PROTECTED]>
+
+       * testbits.cs: Fixed bug #144798 (Novell Bugzilla)
+
 2005-10-07  Wade Berrier  <[EMAIL PROTECTED]>
 
        * testgdi.c: Added missing printf argument

Modified: trunk/libgdiplus/tests/testbits.c
===================================================================
--- trunk/libgdiplus/tests/testbits.c   2006-02-28 21:30:57 UTC (rev 57433)
+++ trunk/libgdiplus/tests/testbits.c   2006-02-28 21:38:59 UTC (rev 57434)
@@ -98,7 +98,8 @@
         cptr = (unsigned char *) (d.Scan0 + (j * d.Stride));
         printf ("%d: ", j);
         for (i = 0; i < 5; i++) {
-            printf ("%02x%02x%02x ", *cptr++, *cptr++, *cptr++);
+            printf ("%02x%02x%02x ", cptr[0], cptr[1], cptr[2]);
+            cptr += 3;
         }
         printf ("\n");
     }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to