diff --git a/groundStation/src/microcart_cli.c b/groundStation/src/microcart_cli.c index 9722478ff20dfef79bde39512e4f3469abae8ef3..224875c3420f2037d6e640dfa8c86525e0784e36 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 +}