You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StatsdClient::count() has 'value' defined as size_t, which is commonly an unsigned value.
%zd in snprintf() helps, consider use uint32_t instead size_t
The text was updated successfully, but these errors were encountered:
in file:
https://github.com/talebook/statsd-client-cpp/blob/master/src/statsd_client.cpp#L158
StatsdClient::count() has 'value' defined as size_t, which is commonly an unsigned value.
%zd in snprintf() helps, consider use uint32_t instead size_t
The text was updated successfully, but these errors were encountered: