From 05bf369bea68063bbdc7cb0ca7e2301de1d466c9 Mon Sep 17 00:00:00 2001 From: Eduard Bagdasaryan Date: Sat, 10 Aug 2019 15:46:19 +0000 Subject: [PATCH] Added ENTRY_REQUIRES_COLLAPSING debugging (#453) ... forgotten in master d2a6dcb. --- src/store.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store.cc b/src/store.cc index 9324abf29b..ee45680a51 100644 --- a/src/store.cc +++ b/src/store.cc @@ -2161,6 +2161,7 @@ std::ostream &operator <<(std::ostream &os, const StoreEntry &e) if (EBIT_TEST(e.flags, ENTRY_VALIDATED)) os << 'V'; if (EBIT_TEST(e.flags, ENTRY_BAD_LENGTH)) os << 'L'; if (EBIT_TEST(e.flags, ENTRY_ABORTED)) os << 'A'; + if (EBIT_TEST(e.flags, ENTRY_REQUIRES_COLLAPSING)) os << 'C'; } return os << '/' << &e << '*' << e.locks(); -- 2.47.3