From: Date: July 19 2005 10:04pm Subject: bk commit into 5.0 tree (elliot:1.1954) BUG#12040 List-Archive: http://lists.mysql.com/internals/27322 X-Bug: 12040 Message-Id: <200507192004.j6JK4nQB013668@dl145k.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of emurphy. When emurphy does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.1954 05/07/19 22:04:43 elliot@stripped +1 -0 ha_ndbcluster.cc: BUG#12040 Fixed compile failure by using %p instead of %x to print a pointer in DBUG_PRINT sql/ha_ndbcluster.cc 1.194 05/07/19 22:01:25 elliot@stripped +2 -2 BUG#12040 Fixed compile failure by using %p instead of %x to print a pointer in DBUG_PRINT # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: elliot # Host: dl145k.mysql.com # Root: /data0/emurphy/src/mysql-5.0 --- 1.193/sql/ha_ndbcluster.cc 2005-07-19 20:21:02 +02:00 +++ 1.194/sql/ha_ndbcluster.cc 2005-07-19 22:01:25 +02:00 @@ -707,8 +707,8 @@ blob_ptr= (char*)""; } - DBUG_PRINT("value", ("set blob ptr=%x len=%u", - (unsigned)blob_ptr, blob_len)); + DBUG_PRINT("value", ("set blob ptr=%p len=%u", + blob_ptr, blob_len)); DBUG_DUMP("value", (char*)blob_ptr, min(blob_len, 26)); if (set_blob_value)