mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:43:31 +03:00
code: style updates
This commit is contained in:
parent
9d194a1143
commit
a71012c03e
85 changed files with 249 additions and 248 deletions
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
static struct SessionHandle *data;
|
||||
|
||||
static CURLcode unit_setup( void )
|
||||
static CURLcode unit_setup(void)
|
||||
{
|
||||
data = curl_easy_init();
|
||||
if(!data)
|
||||
|
|
@ -35,7 +35,7 @@ static CURLcode unit_setup( void )
|
|||
return CURLE_OK;
|
||||
}
|
||||
|
||||
static void unit_stop( void )
|
||||
static void unit_stop(void)
|
||||
{
|
||||
curl_easy_cleanup(data);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue