X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_latency.c;h=1d3bf2e97c5a749e5ff4fb1b4fef91ecb115f1dc;hp=625fc42e82bc35bffc05ba925d5f25b59dbc81dd;hb=a9e50e9e30ecde17e167e271060c8183bfcbf407;hpb=1ecde57a53fc7c50e6b0139ad745b868413d420c diff --git a/src/utils_latency.c b/src/utils_latency.c index 625fc42e..1d3bf2e9 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -65,7 +65,7 @@ struct latency_counter_s { * When a value above this range is added, Histogram's range is increased by * increasing the bin width (note that number of bins remains always at 1000). * This operation of increasing bin width is little expensive as each bin need -* to be visited to update it's count. To reduce frequent change of bin width, +* to be visited to update its count. To reduce frequent change of bin width, * new bin width will be the next nearest power of 2. Example: 2, 4, 8, 16, 32, * 64, 128, 256, 512, 1024, 2048, 5086, ... *