aboutsummaryrefslogtreecommitdiff
path: root/src/tool_cfgable.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-02-27 20:59:15 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-02-27 21:11:37 +0000
commit78f26394dc625b72503fc60ef7e03eff7f72ca52 (patch)
tree384f3fae0d946f5164dee2871bbaf0b961be4812 /src/tool_cfgable.h
parent4efa1d29e274079ed75f4e93115008816e2dda9f (diff)
tool_cfgable: Code policing of structure pointers
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r--src/tool_cfgable.h8
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 */