List:Internals« Previous MessageNext Message »
From:Lars Thalmann Date:September 26 2005 4:49pm
Subject:bk commit into 4.1 tree (lars:1.2455)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of lthalmann. When lthalmann 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.2455 05/09/26 16:49:18 lars@stripped +1 -0
  Fixed gcc error on AMD64: cast from 'char*' to 'unsigned int' loses precision

  sql/ha_ndbcluster.cc
    1.172 05/09/26 16:49:10 lars@stripped +2 -2
    Fixed gcc error on AMD64: cast from 'char*' to 'unsigned int' loses precision

# 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:	lars
# Host:	dl145h.mysql.com
# Root:	/users/lthalmann/bk/mysql-4.1-max

--- 1.171/sql/ha_ndbcluster.cc	2005-09-19 15:35:04 +02:00
+++ 1.172/sql/ha_ndbcluster.cc	2005-09-26 16:49:10 +02:00
@@ -598,8 +598,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)
Thread
bk commit into 4.1 tree (lars:1.2455)Lars Thalmann26 Sep