fixed the same off-by-1 in a second place
diff --git a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h
index d02e8bd..c8a6117 100644
--- a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h
+++ b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h
@@ -143,7 +143,7 @@
   }
 
   // Returns whether or not we ran over the end.
-  bool overrun() const { return current_index_ >= data_size_; }
+  bool overrun() const { return current_index_ > data_size_; }
 
  private:
   // Where we are reading or writing from. Not owned by this object.