tool_cfgable: make 'synthetic_error' a plain bool

The specific reason was not used.

Closes #9179
This commit is contained in:
Daniel Stenberg 2022-07-20 23:53:34 +02:00
parent 3f533a7977
commit 2b0ddb657c
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 2 additions and 9 deletions

View file

@ -234,7 +234,7 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata)
warnf(config->global, "Binary output can mess up your terminal. "
"Use \"--output -\" to tell curl to output it to your terminal "
"anyway, or consider \"--output <FILE>\" to save to a file.\n");
config->synthetic_error = ERR_BINARY_TERMINAL;
config->synthetic_error = TRUE;
return failure;
}
}