From 0f6caa98119045f5452d0b7c28a476f12d56ceb9 Mon Sep 17 00:00:00 2001 From: Georgi Kodinov Date: Mon, 9 Mar 2009 12:49:18 +0200 Subject: fixed a typo --- sql/protocol.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/protocol.cc b/sql/protocol.cc index a1e349bf30b..261852e44a8 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -642,7 +642,7 @@ bool Protocol::send_fields(List *list, uint flags) field.length / item->collation.collation->mbmaxlen; max_length*= thd_charset->mbmaxlen; field_length= (max_length > UINT_MAX32) ? - UINT_MAX32 : (unit32) max_length; + UINT_MAX32 : (uint32) max_length; int4store(pos + 2, field_length); } pos[6]= field.type; -- cgit v1.2.1