Skip to content

Commit 7f0e95e

Browse files
committed
2 parents 28f3128 + 747951a commit 7f0e95e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Inkplate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Inkplate : public System, public Graphics
108108
{
109109
return NetworkClient::isConnected();
110110
};
111-
void applyHttpsCertificate(const char* certificate)
111+
void applyHttpsCertificate(const char *certificate)
112112
{
113113
return NetworkClient::applyHttpsCertificate(certificate);
114114
};

src/include/NetworkClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ void NetworkClient::setFollowRedirects(followRedirects_t f)
623623
* @returns None
624624
*
625625
*/
626-
void NetworkClient::applyHttpsCertificate(const char* certificate)
626+
void NetworkClient::applyHttpsCertificate(const char *certificate)
627627
{
628628
this->certificate = strdup(certificate);
629629
}

src/include/NetworkClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class NetworkClient
6363
uint8_t *downloadFile(const char *url, int32_t *defaultLen);
6464
uint8_t *downloadFileHTTPS(const char *url, int32_t *defaultLen);
6565
uint8_t *downloadFile(WiFiClient *url, int32_t len);
66-
void applyHttpsCertificate(const char* certificate);
66+
void applyHttpsCertificate(const char *certificate);
6767

6868
// The default parameters for nptServer here are cast to (char*) to keep the compiler happy
6969
bool getNTPEpoch(time_t *timeEpoch, int timeZone = 0, char *ntpServer = (char *)"pool.ntp.org",

0 commit comments

Comments
 (0)