summaryrefslogtreecommitdiff
path: root/gdb/minsyms.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/minsyms.c')
-rw-r--r--gdb/minsyms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/minsyms.c b/gdb/minsyms.c
index b20074b273d..36d695acaab 100644
--- a/gdb/minsyms.c
+++ b/gdb/minsyms.c
@@ -547,14 +547,14 @@ find_stab_function_addr (char *namestring, char *filename,
{
/* Try again without the filename. */
p[n] = 0;
- msym = lookup_minimal_symbol (p, 0, objfile);
+ msym = lookup_minimal_symbol (p, NULL, objfile);
}
if (msym == NULL && filename != NULL)
{
/* And try again for Sun Fortran, but without the filename. */
p[n] = '_';
p[n + 1] = 0;
- msym = lookup_minimal_symbol (p, 0, objfile);
+ msym = lookup_minimal_symbol (p, NULL, objfile);
}
return msym == NULL ? 0 : SYMBOL_VALUE_ADDRESS (msym);