From ab578bb338c03dc6ddf6ab0a4e5c629f51174c08 Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Tue, 15 Aug 2017 16:17:55 -1000 Subject: [PATCH] stm32f7:rtc Missing semicolon --- arch/arm/src/stm32f7/stm32_rtc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/stm32f7/stm32_rtc.c b/arch/arm/src/stm32f7/stm32_rtc.c index a314836427f..eb83c016ca5 100644 --- a/arch/arm/src/stm32f7/stm32_rtc.c +++ b/arch/arm/src/stm32f7/stm32_rtc.c @@ -1154,7 +1154,7 @@ int up_rtc_getdatetime(FAR struct tm *tp) tp->tm_wday = tmp % 7; tp->tm_yday = tp->tm_mday + clock_daysbeforemonth(tp->tm_mon, clock_isleapyear(tp->tm_year + 1900)); - tp->tm_isdst = 0 + tp->tm_isdst = 0; #endif #ifdef CONFIG_STM32F7_HAVE_RTC_SUBSECONDS