Fix linux compile bug
diff --git a/test/cpp/qps/timer.cc b/test/cpp/qps/timer.cc
index ff21f1a..5a5be97 100644
--- a/test/cpp/qps/timer.cc
+++ b/test/cpp/qps/timer.cc
@@ -45,7 +45,7 @@
 Timer::Result Timer::Sample() {
   struct rusage usage;
   struct timeval tv;
-  gettimeofday(&tv, NULL);
+  gettimeofday(&tv, nullptr);
   getrusage(RUSAGE_SELF, &usage);
 
   Result r;
@@ -62,4 +62,4 @@
   r.user = s.user - start_.user;
   r.system = s.system - start_.system;
   return r;
-}
\ No newline at end of file
+}