tool: remove newlines from all helpf/notef/warnf/errorf calls

Make voutf() always add one.

Closes #11226
This commit is contained in:
Daniel Stenberg 2023-05-30 14:44:56 +02:00
parent 4efa0b5749
commit 6d45b9ca9c
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
13 changed files with 120 additions and 116 deletions

View file

@ -294,7 +294,7 @@ CURLcode tool_setopt_enum(CURL *curl, struct GlobalConfig *config,
#ifdef DEBUGBUILD
if(ret)
warnf(config, "option %s returned error (%d)\n", name, (int)ret);
warnf(config, "option %s returned error (%d)", name, (int)ret);
#endif
nomem:
return ret;