1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Added explicit casts to prevent compiler warnings when trying to build for iOS

This commit is contained in:
Sander Niemeijer
2014-08-16 12:45:52 +02:00
committed by Manuel Pégourié-Gonnard
parent 8ef7088bb9
commit ef5087d150
6 changed files with 14 additions and 8 deletions

View File

@ -876,7 +876,7 @@ int x509_sig_alg_gets( char *buf, size_t size, const x509_buf *sig_oid,
((void) sig_opts);
#endif /* POLARSSL_X509_RSASSA_PSS_SUPPORT */
return( (int) size - n );
return( (int)( size - n ) );
}
/*