diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 07:53:24 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | dbadaebfc4e9d453232795f54d4fe5618cf8e84d (patch) | |
tree | 5899d1f99ce0d767d28d753e6e6552896d47d01f /src/tool_operate.c | |
parent | bc7e08471c1884a5100b6e0513a006c263ec3c6b (diff) | |
download | curl-dbadaebfc4e9d453232795f54d4fe5618cf8e84d.tar.gz |
checksrc: code style: use 'char *name' style
Diffstat (limited to 'src/tool_operate.c')
-rw-r--r-- | src/tool_operate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index b115ad94e..94d87fecf 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -143,8 +143,8 @@ static bool is_fatal_error(CURLcode code) * and CD/DVD images should be either a STREAM_LF format or a fixed format. * */ -static curl_off_t vms_realfilesize(const char * name, - const struct_stat * stat_buf) +static curl_off_t vms_realfilesize(const char *name, + const struct_stat *stat_buf) { char buffer[8192]; curl_off_t count; @@ -174,8 +174,8 @@ static curl_off_t vms_realfilesize(const char * name, * if not to call a routine to get the correct size. * */ -static curl_off_t VmsSpecialSize(const char * name, - const struct_stat * stat_buf) +static curl_off_t VmsSpecialSize(const char *name, + const struct_stat *stat_buf) { switch(stat_buf->st_fab_rfm) { case FAB$C_VAR: |