Browse Source

These may not be longs (eg: OSX)... fo a safe cast to ensure.

port-ckolivas
Jim Jagielski 11 years ago committed by Noel Maersk
parent
commit
88c7720caf
  1. 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…
Cancel
Save