1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Add a missing prototype.

Too much C++, I expect - 'void foo()' in C++ means what I wanted it to
mean!
This commit is contained in:
Simon Tatham 2022-09-03 10:54:10 +01:00
parent 40dfbeba41
commit a8981212f5

2
misc.h
View File

@ -518,7 +518,7 @@ bool cert_expr_match_str(const char *expression,
* to handle legacy configuration from early in development, when * to handle legacy configuration from early in development, when
* multiple wildcards were stored separately in config, implicitly * multiple wildcards were stored separately in config, implicitly
* ORed together. */ * ORed together. */
CertExprBuilder *cert_expr_builder_new(); CertExprBuilder *cert_expr_builder_new(void);
void cert_expr_builder_free(CertExprBuilder *eb); void cert_expr_builder_free(CertExprBuilder *eb);
void cert_expr_builder_add(CertExprBuilder *eb, const char *wildcard); void cert_expr_builder_add(CertExprBuilder *eb, const char *wildcard);
char *cert_expr_expression(CertExprBuilder *eb); char *cert_expr_expression(CertExprBuilder *eb);