Browse Source

Get rid of unused result warning with asprintf.

nfactor-troky
ckolivas 12 years ago
parent
commit
8f954d40ec
  1. 3
      util.c

3
util.c

@ -326,8 +326,7 @@ json_t *json_rpc_call(CURL *curl, const char *url, @@ -326,8 +326,7 @@ json_t *json_rpc_call(CURL *curl, const char *url,
headers = curl_slist_append(headers,
"X-Mining-Extensions: longpoll midstate rollntime submitold");
if (likely(global_hashrate)) {
asprintf(&ghashrate, "X-Mining-Hashrate: %llu", global_hashrate);
if (likely(global_hashrate && asprintf(&ghashrate, "X-Mining-Hashrate: %llu", global_hashrate) != -1)) {
headers = curl_slist_append(headers, ghashrate);
free(ghashrate);
}

Loading…
Cancel
Save