1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

fixed compilation warnings. addendum to the fix for bug 29125

This commit is contained in:
Georgi Kodinov
2009-03-20 16:27:53 +02:00
parent 26adc3cdc7
commit e8cc09dc8d
7 changed files with 10 additions and 12 deletions

View File

@@ -223,7 +223,7 @@ base64_decode(const char *src_base, size_t len,
The variable 'i' is set to 'len' when padding has been read, so it
does not actually reflect the number of bytes read from 'src'.
*/
return i != len ? -1 : (uint) (d - dst_base);
return i != len ? -1 : (int) (d - dst_base);
}