mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-25 14:04:25 +00:00
These may not be longs (eg: OSX)... fo a safe cast to ensure.
This commit is contained in:
parent
a1844cdf44
commit
88c7720caf
6
api.c
6
api.c
@ -1005,9 +1005,9 @@ static struct api_data *print_data(struct api_data *root, char *buf, bool isjson
|
|||||||
sprintf(buf, "%s", *((bool *)(root->data)) ? TRUESTR : FALSESTR);
|
sprintf(buf, "%s", *((bool *)(root->data)) ? TRUESTR : FALSESTR);
|
||||||
break;
|
break;
|
||||||
case API_TIMEVAL:
|
case API_TIMEVAL:
|
||||||
sprintf(buf, "%ld.%06ld",
|
snprintf(buf, sizeof(buf), "%ld.%06ld",
|
||||||
((struct timeval *)(root->data))->tv_sec,
|
(long)((struct timeval *)(root->data))->tv_sec,
|
||||||
((struct timeval *)(root->data))->tv_usec);
|
(long)((struct timeval *)(root->data))->tv_usec);
|
||||||
break;
|
break;
|
||||||
case API_TEMP:
|
case API_TEMP:
|
||||||
sprintf(buf, "%.2f", *((float *)(root->data)));
|
sprintf(buf, "%.2f", *((float *)(root->data)));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user