From 78f26394dc625b72503fc60ef7e03eff7f72ca52 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 27 Feb 2014 20:59:15 +0000 Subject: tool_cfgable: Code policing of structure pointers --- src/tool_cfgable.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 */ -- cgit v1.2.3