Commit c719d912 authored by unknown's avatar unknown

Manual merge: Do not re-use the same identifier at loop level within a function (IRIX!).

parents 84e9ab66 d1679aa0
......@@ -404,12 +404,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 < (int)ptr[1].sz; i++)
for(i=0; i < (int)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 < (int)ptr[2].sz; i++)
for(i=0; i < (int)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