diff options
Diffstat (limited to 'third_party/aom/av1/decoder/accounting.c')
-rw-r--r-- | third_party/aom/av1/decoder/accounting.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/aom/av1/decoder/accounting.c b/third_party/aom/av1/decoder/accounting.c index ba243c9e1f..8d8f3dfdb4 100644 --- a/third_party/aom/av1/decoder/accounting.c +++ b/third_party/aom/av1/decoder/accounting.c @@ -15,7 +15,7 @@ #include <string.h> #include "aom/aom_integer.h" -#include "./accounting.h" +#include "av1/decoder/accounting.h" static int aom_accounting_hash(const char *str) { uint32_t val; @@ -31,7 +31,7 @@ static int aom_accounting_hash(const char *str) { /* Dictionary lookup based on an open-addressing hash table. */ int aom_accounting_dictionary_lookup(Accounting *accounting, const char *str) { int hash; - int len; + size_t len; AccountingDictionary *dictionary; dictionary = &accounting->syms.dictionary; hash = aom_accounting_hash(str); |