Commit 3b429c53 authored by Robert Schmidt's avatar Robert Schmidt

Fix uninitialized variable warning

parent b735f8be
...@@ -127,7 +127,7 @@ int main(int argc, char *argv[]) ...@@ -127,7 +127,7 @@ int main(int argc, char *argv[])
time_t currentTime; time_t currentTime;
char fileName[512], currentTimeInfo[25]; char fileName[512], currentTimeInfo[25];
char folderName[] = "."; char folderName[] = ".";
FILE *logFile; FILE *logFile = NULL;
/*folderName=getenv("HOME"); /*folderName=getenv("HOME");
strcat(folderName,"/Desktop/polartestResults");*/ strcat(folderName,"/Desktop/polartestResults");*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment