diff options
author | unknown <mats@romeo.(none)> | 2006-09-08 10:20:14 +0200 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2006-09-08 10:20:14 +0200 |
commit | f928706d78d1c547ba5790c25b394e7c41943e35 (patch) | |
tree | bd03af3917a3355c71e11cee249e77510bd0682a /sql/rpl_utility.cc | |
parent | 6e129143e0ff9c037f4613e7734e894eaee35560 (diff) | |
download | mariadb-git-f928706d78d1c547ba5790c25b394e7c41943e35.tar.gz |
Patches to fix problems on Windows
sql/log_event.cc:
Adding cast since byte is unsigned char on Windows
sql/rpl_utility.cc:
Adding missing return statement.
Diffstat (limited to 'sql/rpl_utility.cc')
-rw-r--r-- | sql/rpl_utility.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/rpl_utility.cc b/sql/rpl_utility.cc index fc706178aa3..5405d022223 100644 --- a/sql/rpl_utility.cc +++ b/sql/rpl_utility.cc @@ -96,6 +96,8 @@ field_length_from_packed(enum_field_types const field_type, length= ~0UL; // NYI break; } + + return length; } /********************************************************************* |