commit | ef5087d150d5804e239878b17f357c9fee627883 | [log] [tgz] |
---|---|---|
author | Sander Niemeijer <svniemeijer@mac.com> | Sat Aug 16 12:45:52 2014 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Aug 21 23:48:14 2014 +0200 |
tree | e95f94d1f91f2d52ca886a9947e93e44c9ee059a | |
parent | 8ef7088bb9b08058d4e679e7f85177adf073a899 [diff] [blame] |
Added explicit casts to prevent compiler warnings when trying to build for iOS
diff --git a/library/x509.c b/library/x509.c index 13081e3..49f7672 100644 --- a/library/x509.c +++ b/library/x509.c
@@ -876,7 +876,7 @@ ((void) sig_opts); #endif /* POLARSSL_X509_RSASSA_PSS_SUPPORT */ - return( (int) size - n ); + return( (int)( size - n ) ); } /*