Skip to content
Snippets Groups Projects
Unverified Commit 763b4952 authored by Jake Drahos's avatar Jake Drahos
Browse files

Fixed broken initializer

parent f61a9adc
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment