Commit 281af2f9 authored by joerg@mysql.com's avatar joerg@mysql.com

Proactive compile fix (in case we ever enable "EVENT_DEBUG" on IRIX).

parent 9967ee9d
......@@ -362,12 +362,13 @@ NdbEventOperationImpl::next(int *pOverrun)
Uint32 *aDataPtr = ptr[1].p;
#ifdef EVENT_DEBUG
int i;
printf("after values sz=%u\n", ptr[1].sz);
for(int i=0; i < ptr[1].sz; i++)
for (i=0; i < ptr[1].sz; i++)
printf ("H'%.8X ",ptr[1].p[i]);
printf("\n");
printf("before values sz=%u\n", ptr[2].sz);
for(int i=0; i < ptr[2].sz; i++)
for (i=0; i < ptr[2].sz; i++)
printf ("H'%.8X ",ptr[2].p[i]);
printf("\n");
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment