From b87fc5c5d437933009251205e54e5ac98a85bede Mon Sep 17 00:00:00 2001
From: "cbell/Chuck@mysql_cab_desk." <>
Date: Fri, 27 Jul 2007 16:58:23 -0400
Subject: [PATCH] WL#3915 : (NDB) master's cols > slave

Minor change to fix compile problems on 64-bit.
---
 sql/field.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sql/field.h b/sql/field.h
index 545e34bd55..d66d953813 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -1343,7 +1343,7 @@ public:
      @retval The length in the row plus the size of the data.
   */
   uint32 get_packed_size(const uchar *ptr)
-    {return packlength + get_length((uint)ptr);}
+    {return packlength + get_length((const char *)ptr);}
 
   inline uint32 get_length(uint row_offset=0)
   { return get_length(ptr+row_offset); }
-- 
2.30.9