For some reason the gcc-4.4.3 that ships with Ubuntu Lucid started
to complain recently:
gcrypt.c: In function ‘mgf1’:
gcrypt.c:101: warning: ISO C90 forbids mixed declarations and code
It turned out that a double semicolon is responsible for the
warning. This patch removes the duplicate.
{
gcry_error_t gret;
gcry_md_hd_t handle;
- size_t n;;
+ size_t n;
unsigned char *md;
unsigned char octet_string[4], *rp = result, *end = rp + result_len;