Document how to force linking with static libraries
[openssl.git] / ssl / ssl_ciph.c
index 478d9a9bd45d64527c903e2dcb1c5d2b2c5a6edd..9d259c1a154170e3b879c6389e63965ce95ad90d 100644 (file)
@@ -175,7 +175,7 @@ static int ssl_cipher_info_find(const ssl_cipher_table * table,
     size_t i;
     for (i = 0; i < table_cnt; i++, table++) {
         if (table->mask == mask)
-            return i;
+            return (int)i;
     }
     return -1;
 }