Commit 97f6935e authored by unknown's avatar unknown
Browse files

InnoDB: Fix a preprocessor error introduced in ChangeSet 1.1772


innobase/sync/sync0sync.c:
  Fix a preprocessor error introduced in ChangeSet 1.1772
parent 095d6463
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -1036,11 +1036,12 @@ sync_thread_add_level(
	} else if (level == SYNC_DICT_HEADER) {
		ut_a(sync_thread_levels_g(array, SYNC_DICT_HEADER));
	} else if (level == SYNC_DICT) {
		ut_a(
#ifdef UNIV_DEBUG
			buf_debug_prints ||
#endif /* UNIV_DEBUG */
		ut_a(buf_debug_prints ||
			sync_thread_levels_g(array, SYNC_DICT));
#else /* UNIV_DEBUG */
		ut_a(sync_thread_levels_g(array, SYNC_DICT));
#endif /* UNIV_DEBUG */
	} else {
		ut_error;
	}