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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user