diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-27 20:59:15 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-27 21:11:37 +0000 |
commit | 78f26394dc625b72503fc60ef7e03eff7f72ca52 (patch) | |
tree | 384f3fae0d946f5164dee2871bbaf0b961be4812 /src/tool_cfgable.h | |
parent | 4efa1d29e274079ed75f4e93115008816e2dda9f (diff) |
tool_cfgable: Code policing of structure pointers
Diffstat (limited to 'src/tool_cfgable.h')
-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 */ |