diff options
author | dfr <dfr@FreeBSD.org> | 1998-06-28 00:55:02 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-06-28 00:55:02 +0000 |
commit | 0cc72302972d9c4dd07f5a5df9eeaabdd9f4ae2d (patch) | |
tree | 027ee45269853c021d2371bb1a4709e0e784c18e /sys/ddb/db_sym.c | |
parent | e1316cb0ae78944f953533899d164919f852e4a7 (diff) | |
download | FreeBSD-src-0cc72302972d9c4dd07f5a5df9eeaabdd9f4ae2d.zip FreeBSD-src-0cc72302972d9c4dd07f5a5df9eeaabdd9f4ae2d.tar.gz |
Supply the symbol table as an argument to X_db_symbol_values (required for elf).
Diffstat (limited to 'sys/ddb/db_sym.c')
-rw-r--r-- | sys/ddb/db_sym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 5caf478..a277769 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_sym.c,v 1.21 1998/06/07 17:09:38 dfr Exp $ + * $Id: db_sym.c,v 1.22 1998/06/10 10:56:13 dfr Exp $ */ /* @@ -256,7 +256,7 @@ db_symbol_values(sym, namep, valuep) return; } - X_db_symbol_values(sym, namep, &value); + X_db_symbol_values(db_last_symtab, sym, namep, &value); if (db_symbol_is_ambiguous(sym)) *namep = db_qualify(sym, db_last_symtab->name); |