diff options
-rw-r--r-- | src/tool_cfgable.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h index 5d85d3c88..d7493431a 100644 --- a/src/tool_cfgable.h +++ b/src/tool_cfgable.h @@ -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 */ |