From 09a36dc35118d7eff46f576a35b0a163a35364fb Mon Sep 17 00:00:00 2001 From: nhkefus Date: Thu, 13 Mar 2025 09:56:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TC1/main.c b/TC1/main.c index b495185..973a971 100644 --- a/TC1/main.c +++ b/TC1/main.c @@ -63,7 +63,7 @@ void recordDailyPCount() { // 判断上次检查的时间与当前时间的日期是否不同 if (last_check_time != 0) { struct tm *last_check_time_tm = localtime(&last_check_time); - + tc1_log("WARNGIN: last_check_time day %d ,current_time day %d",last_check_time_tm->tm_mday,current_time->tm_mday); // 如果日期发生变化(即跨天了),则进行记录 if (current_time->tm_year != last_check_time_tm->tm_year || current_time->tm_mon != last_check_time_tm->tm_mon ||