diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2016-02-17 15:00:18 +0100 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2016-02-17 15:00:18 +0100 | 
| commit | 0c671a15016ae52de909267637b80392dee25ccc (patch) | |
| tree | 7a80630217fa44f65c80530ac3674ca06592e5b6 /docs | |
| parent | 9ae7030cef96ae7777e95ca163644c40c20f61bb (diff) | |
simplessl.c: warning: while with space
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/examples/simplessl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/simplessl.c b/docs/examples/simplessl.c index 8af3aa13f..81713ab89 100644 --- a/docs/examples/simplessl.c +++ b/docs/examples/simplessl.c @@ -130,7 +130,7 @@ int main(void)                  curl_easy_strerror(res));        /* we are done... */ -    } while (0); +    } while(0);      /* always cleanup */      curl_easy_cleanup(curl);    }  | 
