diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2019-11-28 16:02:13 +0100 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2019-11-28 16:02:13 +0100 |
commit | 66e21520f369ab92b49a515704b68fa842face85 (patch) | |
tree | 94638c50b65153f5a2d1be0b02fac8b2f17ce7aa /lib/vssh | |
parent | bb8cf0516953eea24cdedee47d31db77e8ced0dc (diff) |
curl_setup_once: consistently use WHILE_FALSE in macros
The WHILE_FALSE construction is used to avoid compiler warnings in
macro constructions. This fixes a few instances where it was not
used in order to keep the code consistent.
Closes #4649
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'lib/vssh')
-rw-r--r-- | lib/vssh/libssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c index 070879d94..ef8745246 100644 --- a/lib/vssh/libssh.c +++ b/lib/vssh/libssh.c @@ -98,7 +98,7 @@ /* A recent macro provided by libssh. Or make our own. */ #ifndef SSH_STRING_FREE_CHAR #define SSH_STRING_FREE_CHAR(x) \ - do { if((x) != NULL) { ssh_string_free_char(x); x = NULL; } } while(0) + do { if((x) != NULL) { ssh_string_free_char(x); x = NULL; } } WHILE_FALSE #endif /* Local functions: */ |