| Index: src/trusted/gdb_rsp/test.cc
|
| diff --git a/src/trusted/gdb_rsp/test.cc b/src/trusted/gdb_rsp/test.cc
|
| index bb9e61c5c922a690ad2300b42ba9ec0a88a665e3..4e1a880d32b0eab0eba19d9830dfed5999062b93 100644
|
| --- a/src/trusted/gdb_rsp/test.cc
|
| +++ b/src/trusted/gdb_rsp/test.cc
|
| @@ -99,9 +99,8 @@ class ThreadMock : public IThread {
|
| uint32_t id_;
|
| };
|
|
|
| -IThread* IThread::Acquire(uint32_t id, bool create) {
|
| - if (create) return new ThreadMock(id);
|
| - return NULL;
|
| +IThread* IThread::Create(uint32_t id, struct NaClAppThread *) {
|
| + return new ThreadMock(id);
|
| }
|
|
|
|
|
|
|