diff --git a/groundStation/src/cli/cli_monitor.c b/groundStation/src/cli/cli_monitor.c
index 7cc64f54d3129a2ca75b07941b1ab1b015793908..7f1df5bf38236b1a6e88224d25b9ac57e69bc9af 100644
--- a/groundStation/src/cli/cli_monitor.c
+++ b/groundStation/src/cli/cli_monitor.c
@@ -102,7 +102,7 @@ int cli_monitor(struct backend_conn * conn,	int argc, char **argv) {
 }
 
 int monitor(struct backend_conn * conn) {
-	static struct frontend_pid_data pid_data[PID_NUM_PIDS] = {0};
+	static struct frontend_pid_data pid_data[PID_NUM_PIDS];
 	/* Get tracker data */
 	struct frontend_tracker_data td;
 
@@ -148,4 +148,4 @@ int monitor(struct backend_conn * conn) {
 	monitorcounter++;
 	pidcounter = ((pidcounter + 1)  % PID_NUM_PIDS);
 	return 0;
-}
\ No newline at end of file
+}