Skip to content

Commit f9e5167

Browse files
author
Cruz Monrreal
authored
Merge pull request #8258 from mirelachirica/fix_compile_warning_network
Cellular: Fix compile warnings for CellularNetwork
2 parents 0aed6bb + 2652553 commit f9e5167

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

features/cellular/framework/API/CellularNetwork.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ class CellularNetwork : public NetworkInterface {
151151
op_status = Unknown;
152152
op_rat = RAT_UNKNOWN;
153153
next = NULL;
154-
op_long[0] = NULL;
155-
op_short[0] = NULL;
156-
op_num[0] = NULL;
154+
op_long[0] = '\0';
155+
op_short[0] = '\0';
156+
op_num[0] = '\0';
157157
}
158158
};
159159

0 commit comments

Comments
 (0)