tool_cfgable: Code policing of structure pointers

This commit is contained in:
Steve Holme 2014-02-27 20:59:15 +00:00
parent 4efa1d29e2
commit 78f26394dc
1 changed files with 4 additions and 4 deletions

View File

@ -210,8 +210,8 @@ struct OperationConfig {
bool noalpn; /* enable/disable TLS ALPN extension */
struct GlobalConfig *global;
struct OperationConfig* prev;
struct OperationConfig* next; /* Always last in the struct */
struct OperationConfig *prev;
struct OperationConfig *next; /* Always last in the struct */
};
struct GlobalConfig {
@ -231,7 +231,7 @@ struct GlobalConfig {
struct OperationConfig *last; /* Always last in the struct */
};
void config_init(struct OperationConfig* config);
void config_free(struct OperationConfig* config);
void config_init(struct OperationConfig *config);
void config_free(struct OperationConfig *config);
#endif /* HEADER_CURL_TOOL_CFGABLE_H */