| Index: base/linux_util.cc
|
| diff --git a/base/linux_util.cc b/base/linux_util.cc
|
| index 49df773ca11a2fd31108c67573ef185644c4f69f..660ea1985c36f276d49235ab0754757a75226f0b 100644
|
| --- a/base/linux_util.cc
|
| +++ b/base/linux_util.cc
|
| @@ -277,7 +277,7 @@ pid_t FindThreadIDWithSyscall(pid_t pid, const std::string& expected_data,
|
| }
|
| closedir(task);
|
|
|
| - scoped_array<char> syscall_data(new char[expected_data.length()]);
|
| + scoped_ptr<char[]> syscall_data(new char[expected_data.length()]);
|
| for (std::vector<pid_t>::const_iterator
|
| i = tids.begin(); i != tids.end(); ++i) {
|
| const pid_t current_tid = *i;
|
|
|