diff options
Diffstat (limited to 'utils/cec-compliance/cec-test.cpp')
-rw-r--r-- | utils/cec-compliance/cec-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/cec-compliance/cec-test.cpp b/utils/cec-compliance/cec-test.cpp index 2b5265a3..986d134f 100644 --- a/utils/cec-compliance/cec-test.cpp +++ b/utils/cec-compliance/cec-test.cpp @@ -1502,7 +1502,7 @@ void collectTests() for (const auto &test : tests) { for (unsigned j = 0; j < test.num_subtests; j++) { std::string name = safename(test.subtests[j].name); - __u64 func = (__u64)test.subtests[j].test_fn; + auto func = (__u64)test.subtests[j].test_fn; if (mapTestFuncs.find(name) != mapTestFuncs.end() && mapTestFuncs[name] != func) { |