summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--storage/innobase/include/ut0lst.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/ut0lst.h b/storage/innobase/include/ut0lst.h
index fb15d6276f8..7b7ed7b8e80 100644
--- a/storage/innobase/include/ut0lst.h
+++ b/storage/innobase/include/ut0lst.h
@@ -475,7 +475,7 @@ void ut_list_validate(const List& list, Functor& functor)
ut_list_map(list, functor);
#ifdef UNIV_DEBUG
/* Validate the list backwards. */
- auto count = list.count;
+ ulint count = list.count;
for (typename List::elem_type* elem = list.end;
elem != 0;
@@ -495,7 +495,7 @@ inline void ut_list_validate(const List& list, const Functor& functor)
ut_list_map(list, functor);
#ifdef UNIV_DEBUG
/* Validate the list backwards. */
- auto count = list.count;
+ ulint count = list.count;
for (typename List::elem_type* elem = list.end;
elem != 0;