diff options
author | venu@myvenu.com <> | 2003-02-04 18:50:48 -0800 |
---|---|---|
committer | venu@myvenu.com <> | 2003-02-04 18:50:48 -0800 |
commit | 0516b2bfee2d3f3653c35cb9c3e9a0ef8683aeec (patch) | |
tree | 6a2652dcfe4e59b5f26ae036c699d8f1ce92851b /sql/field.cc | |
parent | 6a32ae735541b4780a209e883430ded343115792 (diff) | |
download | mariadb-git-0516b2bfee2d3f3653c35cb9c3e9a0ef8683aeec.tar.gz |
Windows compile fixups (To be verified by respective devs)
Diffstat (limited to 'sql/field.cc')
-rw-r--r-- | sql/field.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/field.cc b/sql/field.cc index 7b21f179660..9697b6c158e 100644 --- a/sql/field.cc +++ b/sql/field.cc @@ -1913,7 +1913,7 @@ int Field_longlong::store(const char *from,uint len,CHARSET_INFO *cs) char *end; tmp= cs->scan(cs, from, from+len, MY_SEQ_SPACES); - len-= tmp; + len-= (uint)tmp; from+= tmp; my_errno=0; if (unsigned_flag) |