Missed a checking that should have been checked in with 186211.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@186221 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Host/common/Symbols.cpp b/source/Host/common/Symbols.cpp
index c00f4cc..7189269 100644
--- a/source/Host/common/Symbols.cpp
+++ b/source/Host/common/Symbols.cpp
@@ -93,7 +93,7 @@
             if (file_spec.Exists())
             {
                 lldb_private::ModuleSpecList specs;
-                const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, specs);
+                const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, 0, specs);
                 assert (num_specs <= 1 && "Symbol Vendor supports only a single architecture");
                 if (num_specs == 1)
                 {