summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <jani@a88-113-38-195.elisa-laajakaista.fi>2007-03-01 11:28:33 +0200
committerunknown <jani@a88-113-38-195.elisa-laajakaista.fi>2007-03-01 11:28:33 +0200
commit33ccc75633e06ff5d8948713262b22c2c177371b (patch)
tree519817aac70f828e634ffc39c604142d2ed98806
parentc04d5985c1cee79921de5a8ca4b684e82d2c5695 (diff)
downloadmariadb-git-33ccc75633e06ff5d8948713262b22c2c177371b.tar.gz
Fixed compiler warnings.
client/mysqltest.c: Fixed a compiler warning. support-files/compiler_warnings.supp: Suppressed compiler warnings on Win 64.
-rw-r--r--client/mysqltest.c2
-rw-r--r--support-files/compiler_warnings.supp2
2 files changed, 3 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c
index 074eeb0fac4..f6dea1d6b3e 100644
--- a/client/mysqltest.c
+++ b/client/mysqltest.c
@@ -6730,7 +6730,7 @@ int reg_replace(char** buf_p, int* buf_len_p, char *pattern,
if ((start_off=subs[back_ref_num].rm_so) > -1 &&
(end_off=subs[back_ref_num].rm_eo) > -1)
{
- int block_len= end_off - start_off;
+ int block_len= (int) (end_off - start_off);
memcpy(res_p,str_p + start_off, block_len);
res_p += block_len;
}
diff --git a/support-files/compiler_warnings.supp b/support-files/compiler_warnings.supp
index 46f706198c0..a147255f9a4 100644
--- a/support-files/compiler_warnings.supp
+++ b/support-files/compiler_warnings.supp
@@ -48,6 +48,7 @@ dbm.c : .*'item.dsize' is used uninitialized in this function.*
.* : conversion from '.*size_t' to 'uint32'.*
.* : conversion from '.*size_t' to 'off_t'.*
.* : conversion from '.*size_t' to 'size_s'.*
+.* : conversion from 'u?lint' to 'int'.*
ha_berkeley.cc : .*conversion from 'ulonglong' to 'char'.*
#
@@ -74,4 +75,5 @@ mi_packrec.c : .*result of 32-bit shift implicitly converted to 64 bits.* : 567
# in 5.0. Please do not merge upwards.
#
socket_wrapper.cpp : .*truncation of constant value.*
+socket_wrapper.hpp : .*truncation of constant value.*
viossl.c : .*conversion from 'SOCKET' to 'socket_t'.*