Fix if/for/while( in docs
[openssl.git] / doc / crypto / EVP_DigestInit.pod
index 1f2da05a7639f9f958fbea7cbe014548bdfd9cd5..d615b31b87fe5f11f3993fd3e7a20ade2c552436 100644 (file)
@@ -223,7 +223,7 @@ digest name passed on the command line.
  EVP_MD_CTX_free(mdctx);
 
  printf("Digest is: ");
- for(i = 0; i < md_len; i++)
+ for (i = 0; i < md_len; i++)
         printf("%02x", md_value[i]);
  printf("\n");