doc/man3: reformat the function prototypes in the synopses
[openssl.git] / doc / man3 / BIO_find_type.pod
index 08ec16134972ffd541b5acecfda5be24fb736ed8..b8171942efcc01c4e1f69b4272d037a54ffda0d1 100644 (file)
@@ -45,8 +45,8 @@ BIO_method_type() returns the type of the BIO B<b>.
 Traverse a chain looking for digest BIOs:
 
  BIO *btmp;
- btmp = in_bio; /* in_bio is chain to search through */
 
+ btmp = in_bio; /* in_bio is chain to search through */
  do {
      btmp = BIO_find_type(btmp, BIO_TYPE_MD);
      if (btmp == NULL)