Skip to content

Commit

Permalink
Fix buildbot compile error for https://reviews.llvm.org/D105160.
Browse files Browse the repository at this point in the history
  • Loading branch information
clayborg committed Jun 30, 2021
1 parent c8164d0 commit 43f6dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Symbol/Symtab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ uint32_t Symtab::GetNameIndexes(ConstString symbol_name,
return 0; // Not a synthetic symbol name

// Extract the user ID from the symbol name
user_id_t uid = 0;
unsigned long long uid = 0;
if (getAsUnsignedInteger(name, /*Radix=*/10, uid))
return 0; // Failed to extract the user ID as an integer
Symbol *symbol = FindSymbolByID(uid);
Expand Down

0 comments on commit 43f6dad

Please sign in to comment.