Skip to content

Commit f29c5b2

Browse files
committed
Keep style linter happy
1 parent a7f4cbc commit f29c5b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

features/cellular/framework/AT/AT_CellularDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ CellularContext *AT_CellularDevice::create_context(FileHandle *fh, const char *a
207207
return ctx;
208208
}
209209

210-
AT_CellularContext *prev=NULL;
210+
AT_CellularContext *prev = NULL;
211211
while (curr) {
212212
prev = curr;
213213
curr = (AT_CellularContext *)curr->_next;

features/cellular/framework/AT/AT_CellularSMS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ void AT_CellularSMS::add_info(sms_info_t *info, int index, int part_number)
990990
return;
991991
}
992992
sms_info_t *current = _sms_info;
993-
sms_info_t *prev=NULL;
993+
sms_info_t *prev = NULL;
994994
bool found_msg = false;
995995
while (current) {
996996
prev = current;

0 commit comments

Comments
 (0)