Skip to content

Commit 6e2cc4a

Browse files
committed
whitespace fix
1 parent a582139 commit 6e2cc4a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

examples/all-clusters-app/cc13x4_26x4/main/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ int AppTask::Init()
235235
false, // no timer reload (==one-shot)
236236
(void *) this, // init timer id = light obj context
237237
OTAInitTimerEventHandler // timer callback handler
238-
);
238+
);
239239

240240
if (sOTAInitTimer == NULL)
241241
{

examples/lighting-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ int AppTask::Init()
248248
false, // no timer reload (==one-shot)
249249
(void *) this, // init timer id = light obj context
250250
OTAInitTimerEventHandler // timer callback handler
251-
);
251+
);
252252

253253
if (sOTAInitTimer == NULL)
254254
{

examples/lock-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ int AppTask::Init()
242242
false, // no timer reload (==one-shot)
243243
(void *) this, // init timer id = light obj context
244244
OTAInitTimerEventHandler // timer callback handler
245-
);
245+
);
246246

247247
if (sOTAInitTimer == NULL)
248248
{

examples/pump-controller-app/cc13x4_26x4/main/AppTask.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ AppTask AppTask::sAppTask;
8686
#if CHIP_DEVICE_CONFIG_ENABLE_OTA_REQUESTOR
8787
void StartTimer(uint32_t aTimeoutMs);
8888
void CancelTimer(void);
89-
#endif
89+
#endif
9090

9191
uint8_t sTestEventTriggerEnableKey[TestEventTriggerDelegate::kEnableKeyLength] = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
9292
0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff };
@@ -244,7 +244,7 @@ int AppTask::Init()
244244
{
245245
PLAT_LOG("sOTAInitTimer timer created successfully ");
246246
}
247-
#endif
247+
#endif
248248

249249
ret = ThreadStackMgr().InitThreadStack();
250250
if (ret != CHIP_NO_ERROR)

0 commit comments

Comments
 (0)