From 1fe07cbf7c353e694c42eb688ffaa544ef038c4c Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Fri, 7 Oct 2022 13:41:37 +0200 Subject: [PATCH] Fix ccronexpr --- lib/libesp32/ccronexpr/ccronexpr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libesp32/ccronexpr/ccronexpr.c b/lib/libesp32/ccronexpr/ccronexpr.c index 826d95536..7ec9d33a3 100644 --- a/lib/libesp32/ccronexpr/ccronexpr.c +++ b/lib/libesp32/ccronexpr/ccronexpr.c @@ -282,7 +282,6 @@ static int add_to_field(struct tm* calendar, int field, int val) { calendar->tm_hour = calendar->tm_hour + val; break; case CRON_CF_DAY_OF_WEEK: /* mkgmtime ignores this field */ - break; case CRON_CF_DAY_OF_MONTH: calendar->tm_mday = calendar->tm_mday + val; break;