aboutsummaryrefslogtreecommitdiff
path: root/src/tool_formparse.c
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2015-02-28 10:53:33 +0100
committerKamil Dudka <kdudka@redhat.com>2015-02-28 10:54:59 +0100
commit921d1951874b9f11919da4150f5f656acc36da6f (patch)
tree6b84033ea51fe344105018a36f222eceb3eba0b7 /src/tool_formparse.c
parent48b5374e65a48a14aee18eab0f0b7e3d97850d8f (diff)
tool: wrap lines longer than 79 columns
... to avoid a build failure when configured with --enable-debug
Diffstat (limited to 'src/tool_formparse.c')
-rw-r--r--src/tool_formparse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tool_formparse.c b/src/tool_formparse.c
index 8b3c39d27..f26f2595c 100644
--- a/src/tool_formparse.c
+++ b/src/tool_formparse.c
@@ -206,7 +206,8 @@ int formparse(struct OperationConfig *config,
/* verify that this is a fine type specifier */
if(2 != sscanf(type, "%127[^/]/%127[^;,\n]",
type_major, type_minor)) {
- warnf(config->global, "Illegally formatted content-type field!\n");
+ warnf(config->global,
+ "Illegally formatted content-type field!\n");
Curl_safefree(contents);
FreeMultiInfo(&multi_start, &multi_current);
return 2; /* illegal content-type syntax! */