From 763b4952ddeeb1a1e7b6469a12e17a790fa20b63 Mon Sep 17 00:00:00 2001
From: Jake Drahos <j@kedrahos.com>
Date: Mon, 31 Oct 2016 15:12:21 -0500
Subject: [PATCH] Fixed broken initializer

---
 groundStation/src/microcart_cli.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/groundStation/src/microcart_cli.c b/groundStation/src/microcart_cli.c
index 9722478ff..224875c34 100644
--- a/groundStation/src/microcart_cli.c
+++ b/groundStation/src/microcart_cli.c
@@ -72,7 +72,7 @@ void findTimeDiff(int respID);
 int timeval_subtract (struct timeval *result, struct timeval *x, struct timeval *y);
 //time stamp checking
 static unsigned int currMessageID = 0;
-struct timeval timeArr[MAX_HASH_SIZE] = {0};
+struct timeval timeArr[MAX_HASH_SIZE];
 
 // global variables
 static volatile int keepRunning = 1;
@@ -651,4 +651,4 @@ void findTimeDiff(int respID) {
 	// char tmp[8];
 	// snprintf(tmp, 8, "%ld \tms\n", result.tv_usec/1000);
 	// writeStringToLog(tmp);
-}
\ No newline at end of file
+}
-- 
GitLab