diff options
author | unknown <bar@mysql.com> | 2005-07-26 16:38:10 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-07-26 16:38:10 +0500 |
commit | 0ac6408c8c736600a769234b910bac2a74f7ae7b (patch) | |
tree | fabb049775a54175ac5f745e7a41342f4fb22cc7 /strings/ctype-gbk.c | |
parent | 6f06cf77aec95920943cd67cd3b3e412c6ba6a79 (diff) | |
download | mariadb-git-0ac6408c8c736600a769234b910bac2a74f7ae7b.tar.gz |
ctype-big5.c:
ctype-cp932.c:
ctype-gbk.c:
ctype-mb.c:
ctype-simple.c:
ctype-sjis.c:
ctype-ucs2.c:
ctype-ujis.c:
ctype-utf8.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-big5.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-cp932.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-gbk.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-mb.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-simple.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-sjis.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-ucs2.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-ujis.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
strings/ctype-utf8.c:
Adding explicit cast to return type
in pointer substructions to avoid
warnings from some compilers.
Diffstat (limited to 'strings/ctype-gbk.c')
-rw-r--r-- | strings/ctype-gbk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-gbk.c b/strings/ctype-gbk.c index 6fb072d266d..7196d004ad5 100644 --- a/strings/ctype-gbk.c +++ b/strings/ctype-gbk.c @@ -9956,7 +9956,7 @@ uint my_well_formed_len_gbk(CHARSET_INFO *cs __attribute__((unused)), break; } } - return b - b0; + return (uint) (b - b0); } |