LRRP Patch 3

Expand Array on LRRP getDateL function to get properly formatted datestamp in lrrp.txt
This commit is contained in:
lwvmobile 2022-08-13 12:47:03 -04:00 committed by GitHub
parent 03fb413750
commit e5a7f8c41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ char * getTimeL(void) //get pretty hh:mm:ss timestamp
//getDate has a bug that affects writing to file using fopen 32-bit Ubuntu OS, need to look into
char * getDateL(void) {
char datename[99]; //increased to 99 to fix 32-bit Ubuntu when fopen file printing to lrrp.txt
char datename[200]; //increased to 200 to fix 32-bit Ubuntu/Cygwin when fopen file printing to lrrp.txt
char * curr2;
struct tm * to;
time_t t;