Skip to content

Commit 41a908e

Browse files
committed
Remove the 0 on struct initalization
1 parent ea8a0a3 commit 41a908e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variants/STM32C0xx/C092CBT_C092RBT_C092RC(I-T)/variant_NUCLEO_C092RC.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ extern "C" {
109109
*/
110110
void SystemClock_Config(void)
111111
{
112-
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
113-
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
112+
RCC_OscInitTypeDef RCC_OscInitStruct = {};
113+
RCC_ClkInitTypeDef RCC_ClkInitStruct = {};
114114

115115
__HAL_FLASH_SET_LATENCY(FLASH_LATENCY_1);
116116

0 commit comments

Comments
 (0)