From 41cdffd4e6a6797911db0a3e8976f2deffe68a7a Mon Sep 17 00:00:00 2001 From: Ton Huisman Date: Tue, 20 Jun 2023 21:54:31 +0200 Subject: [PATCH] [C015] Blynk: Fix compile-error when enabling the SSL option --- src/_C015.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_C015.cpp b/src/_C015.cpp index 822334a8c..9e6f3e625 100644 --- a/src/_C015.cpp +++ b/src/_C015.cpp @@ -120,7 +120,7 @@ bool CPlugin_015(CPlugin::Function function, struct EventStruct *event, String& case CPlugin::Function::CPLUGIN_WEBFORM_LOAD: { char thumbprint[60] = {0}; - LoadCustomControllerSettings(event->ControllerIndex, reinterpret_cast(&thumbprint), sizeof(thumbprint)); + LoadCustomControllerSettings(event->ControllerIndex, reinterpret_cast(&thumbprint), sizeof(thumbprint)); if (strlen(thumbprint) != 59) { strcpy(thumbprint, CPLUGIN_015_DEFAULT_THUMBPRINT);