From: Date: May 18 2007 4:31pm Subject: bk commit into 6.0-falcon tree (hakank:1.2524) BUG#28197 List-Archive: http://lists.mysql.com/commits/26993 X-Bug: 28197 Message-Id: <20070518143131.6674D204078@lu0011.wdf.sap.corp> Below is the list of changes that have just been committed into a local 6.0-falcon repository of hakan. When hakan 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@stripped, 2007-05-18 16:31:23+02:00, hakank@stripped +1 -0 After review changes for Bug#28197. storage/falcon/MemMgr.cpp@stripped, 2007-05-18 16:31:19+02:00, hakank@stripped +2 -2 After review changes for Bug#28197. # 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: hakank # Host: lu0011.wdf.sap.corp # Root: /home/hakan/work/mysql/mysql-5.1-falcon-28197 --- 1.22/storage/falcon/MemMgr.cpp 2007-05-18 12:33:51 +02:00 +++ 1.23/storage/falcon/MemMgr.cpp 2007-05-18 16:31:19 +02:00 @@ -972,10 +972,10 @@ stream->format ("Unique sizes: %d\n", sizes); stream->format ("Free segments:\t%d\n", numberFree); - stream->format ("Free space:\t%d\n", freeSpace); + stream->format ("Free space:\t" I64FORMAT "\n", freeSpace); if (orderedSpace != freeSpace) - stream->format ("Memory leak: %d\n", freeSpace - orderedSpace); + stream->format ("Memory leak: " I64FORMAT "\n", freeSpace - orderedSpace); } if (summaryTable)