tool: wrap lines longer than 79 columns

... to avoid a build failure when configured with --enable-debug
This commit is contained in:
Kamil Dudka 2015-02-28 10:53:33 +01:00
parent 48b5374e65
commit 921d195187
2 changed files with 4 additions and 3 deletions

View file

@ -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! */