summaryrefslogtreecommitdiff
path: root/gdb/d-namespace.c
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2016-02-21 22:05:46 +0100
committerIain Buclaw <ibuclaw@gdcproject.org>2016-02-21 22:05:49 +0100
commite08db6db1dd514f1c99f94bb6a9c1cfe02a1ab90 (patch)
tree8cc5e212b770e2488be7f10206ff04f9b5bb4461 /gdb/d-namespace.c
parent30a6a7f035026d05b52c92c26d4cb7ea3c6d6e5c (diff)
downloadbinutils-gdb-e08db6db1dd514f1c99f94bb6a9c1cfe02a1ab90.tar.gz
Also update recursive call to d_lookup_symbol_imports.
Diffstat (limited to 'gdb/d-namespace.c')
-rw-r--r--gdb/d-namespace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/d-namespace.c b/gdb/d-namespace.c
index 2c8b36c988f..6399ef012f3 100644
--- a/gdb/d-namespace.c
+++ b/gdb/d-namespace.c
@@ -485,7 +485,7 @@ d_lookup_symbol_imports (const char *scope, const char *name,
name_scope++;
sym = d_lookup_symbol_imports (current->import_src,
name + name_scope,
- block, domain, 0);
+ block, domain);
}
}
}
@@ -495,7 +495,7 @@ d_lookup_symbol_imports (const char *scope, const char *name,
current->import_src as MODULE to direct the search
towards the imported module. */
sym = d_lookup_symbol_imports (current->import_src,
- name, block, domain, 0);
+ name, block, domain);
}
current->searched = 0;
discard_cleanups (searched_cleanup);