diff options
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 5f42867..037ed19 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1005,7 +1005,7 @@ psym_print_stats (struct objfile *objfile) i = 0; for (partial_symtab *ps : require_partial_symbols (objfile, true)) { - if (ps->readin == 0) + if (!ps->readin) i++; } printf_filtered (_(" Number of psym tables (not yet expanded): %d\n"), i); |