diff options
author | unknown <joerg@mysql.com> | 2005-03-16 16:44:31 +0100 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-03-16 16:44:31 +0100 |
commit | 5be39a0c956cfaaa3febba55afc4c3ebbcff83f7 (patch) | |
tree | 2f29f92c32d91aee619e5cf731059312378e0cab /ndb | |
parent | b3a5e5b1fd80885b0d0763280d259b4c3ae21c2b (diff) | |
parent | 0f3b3d3a7bc09c6811f28418705178219cdcff09 (diff) | |
download | mariadb-git-5be39a0c956cfaaa3febba55afc4c3ebbcff83f7.tar.gz |
Merge mysql.com:/M41/mysql-4.1 into mysql.com:/M41/push-4.1
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 |