diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 08:49:04 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | 6832c1d4b2a9eb97a36bb6565c84a8eef451a39c (patch) | |
tree | dad19839fa62edb783545b6387ec3fba151dd813 /lib/formdata.c | |
parent | 80e7cfeb87c18a7552933ff43a96bd1b709eec22 (diff) | |
download | curl-6832c1d4b2a9eb97a36bb6565c84a8eef451a39c.tar.gz |
checksrc: move open braces to comply with function declaration style
Diffstat (limited to 'lib/formdata.c')
-rw-r--r-- | lib/formdata.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c index ed520f5ad..2aef5faf1 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -1427,7 +1427,8 @@ int Curl_FormInit(struct Form *form, struct FormData *formdata) * */ # define fopen_read vmsfopenread -static FILE * vmsfopenread(const char *file, const char *mode) { +static FILE * vmsfopenread(const char *file, const char *mode) +{ struct_stat statbuf; int result; |