diff options
-rw-r--r-- | utils/storeinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/storeinfo.c b/utils/storeinfo.c index 0486f179..46ad1624 100644 --- a/utils/storeinfo.c +++ b/utils/storeinfo.c @@ -117,7 +117,7 @@ print_store (struct store *store, int level, unsigned what) pstr (store->class->name,W_TYPE); - if (store->flags && (what & W_FLAGS)) + if ((store->flags & ~STORE_INACTIVE) && (what & W_FLAGS)) { int t = 0; /* flags tested */ int f = 1; |