aboutsummaryrefslogtreecommitdiff
path: root/statsd
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2017-02-11 14:48:52 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2017-02-11 17:54:40 +0100
commit623dffe2c054d1639dbf9c8f21ddfb088c7950fb (patch)
treef8159c5b3cf9872f9b271d03ad5a4b65ecec19b8 /statsd
parentb229dc91d8825689c5e66264b462ce01398e621e (diff)
downloadcmix-623dffe2c054d1639dbf9c8f21ddfb088c7950fb.tar.gz
cmix-623dffe2c054d1639dbf9c8f21ddfb088c7950fb.tar.bz2
cmix-623dffe2c054d1639dbf9c8f21ddfb088c7950fb.zip
Working Ed25519 Implementation of libcmix.
Diffstat (limited to 'statsd')
-rw-r--r--statsd/stats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/statsd/stats.cpp b/statsd/stats.cpp
index cd66193..e2a6a5d 100644
--- a/statsd/stats.cpp
+++ b/statsd/stats.cpp
@@ -65,7 +65,7 @@ void Stats::output(std::string file)
ofs << it->first;
}
ofs << std::endl;
- for(int i = 0; i < table.second.begin()->second.size(); ++i) {
+ for(size_t i = 0; i < table.second.begin()->second.size(); ++i) {
for(auto it = table.second.begin(); it != table.second.end(); ++it) {
if(it != table.second.begin()) {
ofs << ", ";