diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2022-12-02 16:18:16 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2022-12-02 16:18:16 +0300 |
commit | 22a73deb46c33ab8539b522286f0fb9b3364f856 (patch) | |
tree | af3cf69e9e6ebc887a5add5491b2fcebbfdff06a /contrib/libs/curl/src/tool_msgs.c | |
parent | 2e7d246d83a0077f08e6fed36594fc2087949502 (diff) | |
download | ydb-22a73deb46c33ab8539b522286f0fb9b3364f856.tar.gz |
Update contrib/libs/curl to 7.86.0
Diffstat (limited to 'contrib/libs/curl/src/tool_msgs.c')
-rw-r--r-- | contrib/libs/curl/src/tool_msgs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/curl/src/tool_msgs.c b/contrib/libs/curl/src/tool_msgs.c index 4900333ff9..a880a667eb 100644 --- a/contrib/libs/curl/src/tool_msgs.c +++ b/contrib/libs/curl/src/tool_msgs.c @@ -59,7 +59,7 @@ static void voutf(struct GlobalConfig *config, if(len > width) { size_t cut = width-1; - while(!ISSPACE(ptr[cut]) && cut) { + while(!ISBLANK(ptr[cut]) && cut) { cut--; } if(0 == cut) |