diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-10-25 12:06:04 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-10-25 12:06:04 -0700 |
commit | cb4cd3dc5d160c2070320c74feabb2a7351fa897 (patch) | |
tree | 09e802d04b2515e2bfd609029bb79bfed6a77e47 | |
parent | 3a96ee3444eae47aafb2f17f44b2364cc0487fdd (diff) |
make gcc4.4 happy
-rw-r--r-- | test/cpp/thread_manager/thread_manager_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/thread_manager/thread_manager_test.cc b/test/cpp/thread_manager/thread_manager_test.cc index 6c1255e913..50c33f7162 100644 --- a/test/cpp/thread_manager/thread_manager_test.cc +++ b/test/cpp/thread_manager/thread_manager_test.cc @@ -91,7 +91,7 @@ grpc::ThreadManager::WorkStatus ThreadManagerTest::PollForWork(void **tag, // Simulate "polling for work" by sleeping for sometime SleepForMs(kPollingTimeoutMsec); - *tag = nullptr; + *tag = NULL; *ok = true; // Return timeout roughly 1 out of every 3 calls |