diff options
author | joerg@mysql.com <> | 2005-03-15 12:40:28 +0100 |
---|---|---|
committer | joerg@mysql.com <> | 2005-03-15 12:40:28 +0100 |
commit | 281af2f9bcb156b05551f67c7a6baf41f05805fa (patch) | |
tree | 4c1954da1adc3fab4c681a958a6b817722a2db0b /ndb | |
parent | 9967ee9d28eb05ec8822fa04877519c3d5105a91 (diff) | |
download | mariadb-git-281af2f9bcb156b05551f67c7a6baf41f05805fa.tar.gz |
Proactive compile fix (in case we ever enable "EVENT_DEBUG" on IRIX).
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/ndbapi/NdbEventOperationImpl.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ndb/src/ndbapi/NdbEventOperationImpl.cpp b/ndb/src/ndbapi/NdbEventOperationImpl.cpp index b3fac64d1c4..87bbca5fc71 100644 --- a/ndb/src/ndbapi/NdbEventOperationImpl.cpp +++ b/ndb/src/ndbapi/NdbEventOperationImpl.cpp @@ -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 |