We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5ce4f commit db89654Copy full SHA for db89654
main/main.c
@@ -131,7 +131,7 @@ static BaseType_t prvInitializeNetworkContext( void )
131
esp_err_t xEspErrRet;
132
133
/* This is used as a temporary buffer for anything */
134
- char *variableBuffer = NULL;
+ char * variableBuffer = NULL;
135
136
/* Verify that the MQTT endpoint and thing name have been configured by the
137
* user. */
@@ -214,7 +214,7 @@ static BaseType_t prvInitializeNetworkContext( void )
214
#else /* if CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL */
215
xEspErrRet = esp_secure_cert_get_priv_key( &variableBuffer,
216
&xNetworkContext.pcClientKeySize );
217
-
+
218
xNetworkContext.pcClientKey = variableBuffer;
219
220
if( xEspErrRet == ESP_OK )
0 commit comments