fix indentation

This commit is contained in:
josch
2014-12-28 09:40:52 +01:00
parent b83eb74551
commit 0bd253bf28
9 changed files with 23 additions and 33 deletions

View File

@@ -266,8 +266,7 @@ const char *mfconn_create_unsigned_get(mfconn * conn, int ssl,
api_request = strdup_printf("%s//%s/api/%s/%s",
(ssl ? "https:" : "http:"),
conn->server,
MFAPI_VERSION, api);
conn->server, MFAPI_VERSION, api);
// compute the amount of space requred to realloc() the request
bytes_to_alloc = api_args_len;
@@ -356,8 +355,7 @@ const char *mfconn_create_signed_get(mfconn * conn, int ssl,
api_request = strdup_printf("%s//%s/api/%s/%s",
(ssl ? "https:" : "http:"),
conn->server,
MFAPI_VERSION, api);
conn->server, MFAPI_VERSION, api);
call_hash = mfconn_create_call_signature(conn, api_request, api_args);
signature = strdup_printf("&signature=%s", call_hash);