Upgraded the rest of Time.

Change-Id: I0ee083837e51d8f74a798b7ba14a3b6bb3859f35
diff --git a/y2014/hot_goal_reader.cc b/y2014/hot_goal_reader.cc
index 0b24f22..6c76c12 100644
--- a/y2014/hot_goal_reader.cc
+++ b/y2014/hot_goal_reader.cc
@@ -72,8 +72,9 @@
       fd_set fds;
       FD_ZERO(&fds);
       FD_SET(connection, &fds);
-      struct timeval timeout_timeval =
-          ::aos::time::Time::InSeconds(1).ToTimeval();
+      struct timeval timeout_timeval;
+      timeout_timeval.tv_sec = 1;
+      timeout_timeval.tv_usec = 0;
       switch (
           select(connection + 1, &fds, nullptr, nullptr, &timeout_timeval)) {
         case 1: {