diff options
author | Miles Bader <miles@gnu.org> | 1996-10-09 19:13:52 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-10-09 19:13:52 +0000 |
commit | d03b1e9fac1bf93948c9cf5b3662a6f65e6255d0 (patch) | |
tree | d474b928c3d6f7bbda396b0182906d6651f1b2e8 /utils/storeinfo.c | |
parent | e822431a837def63254f0cf331edb0fb4ed27490 (diff) |
(print_store): Properly ignore STORE_INACTIVE.
Diffstat (limited to 'utils/storeinfo.c')
-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; |