aboutsummaryrefslogtreecommitdiff
path: root/c/enc/histogram_inc.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/enc/histogram_inc.h')
-rw-r--r--c/enc/histogram_inc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/enc/histogram_inc.h b/c/enc/histogram_inc.h
index 7807036..50eaf74 100644
--- a/c/enc/histogram_inc.h
+++ b/c/enc/histogram_inc.h
@@ -33,7 +33,7 @@ static BROTLI_INLINE void FN(HistogramAdd)(FN(Histogram)* self, size_t val) {
}
static BROTLI_INLINE void FN(HistogramAddVector)(FN(Histogram)* self,
- const DataType *p, size_t n) {
+ const DataType* p, size_t n) {
self->total_count_ += n;
n += 1;
while (--n) ++self->data_[*p++];