From e5a7f8c41aa03c1ebcf9fd2abe17bf93363a2249 Mon Sep 17 00:00:00 2001 From: lwvmobile <59371473+lwvmobile@users.noreply.github.com> Date: Sat, 13 Aug 2022 12:47:03 -0400 Subject: [PATCH] LRRP Patch 3 Expand Array on LRRP getDateL function to get properly formatted datestamp in lrrp.txt --- src/dmr_sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dmr_sync.c b/src/dmr_sync.c index e1e4b31..5f8f0b3 100644 --- a/src/dmr_sync.c +++ b/src/dmr_sync.c @@ -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;