summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@oracle.com>2010-05-11 13:45:00 +0300
committerMarko Mäkelä <marko.makela@oracle.com>2010-05-11 13:45:00 +0300
commit5acbc67f6e58496eeb8dcfc34232fdc94a856e3f (patch)
tree5b2b4d3e9c8c5b5e5994836c62d3f4b7624d5f5c /storage
parent55968c768dcb8c2a14f8c51e3a97d2a2bef61b8a (diff)
downloadmariadb-git-5acbc67f6e58496eeb8dcfc34232fdc94a856e3f.tar.gz
Remove a stray expression. Spotted by Sunny Bains.
Diffstat (limited to 'storage')
-rw-r--r--storage/innodb_plugin/page/page0zip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/page/page0zip.c b/storage/innodb_plugin/page/page0zip.c
index aa5e39ff04a..a64a41ea518 100644
--- a/storage/innodb_plugin/page/page0zip.c
+++ b/storage/innodb_plugin/page/page0zip.c
@@ -571,7 +571,7 @@ page_zip_dir_encode(
/* Traverse the list of stored records in the collation order,
starting from the first user record. */
- rec = page + PAGE_NEW_INFIMUM, TRUE;
+ rec = page + PAGE_NEW_INFIMUM;
i = 0;