mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
fixed compilation warnings. addendum to the fix for bug 29125
This commit is contained in:
parent
26adc3cdc7
commit
e8cc09dc8d
7 changed files with 10 additions and 12 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue