mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Proactive compile fix (in case we ever enable "EVENT_DEBUG" on IRIX).
ndb/src/ndbapi/NdbEventOperationImpl.cpp: Proactive compile fix (in case we ever enable "EVENT_DEBUG" on IRIX): Two identical declarations on loop level will collide at function level.
This commit is contained in:
parent
f56889321f
commit
188d2c26fd
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue