diff options
Diffstat (limited to 'profman/profile_assistant.cc')
| -rw-r--r-- | profman/profile_assistant.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profman/profile_assistant.cc b/profman/profile_assistant.cc index 58e8a3a7d1..ac1865785e 100644 --- a/profman/profile_assistant.cc +++ b/profman/profile_assistant.cc @@ -54,7 +54,7 @@ ProfileAssistant::ProcessingResult ProfileAssistant::ProcessProfilesInternal( for (size_t i = 0; i < new_info.size(); i++) { // Merge all data into a single object. - if (!info.Load(new_info[i])) { + if (!info.MergeWith(new_info[i])) { LOG(WARNING) << "Could not merge profile data at index " << i; return kErrorBadProfiles; } |