From 265255305a6f3884cec6f96fef55071221cc0110 Mon Sep 17 00:00:00 2001 From: Mirela Chirica Date: Wed, 26 Sep 2018 16:39:05 +0300 Subject: [PATCH] Cellular: Fix compile warnings for CellularNetwork --- features/cellular/framework/API/CellularNetwork.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/cellular/framework/API/CellularNetwork.h b/features/cellular/framework/API/CellularNetwork.h index 609ccd844ad..c9ceb2118ff 100644 --- a/features/cellular/framework/API/CellularNetwork.h +++ b/features/cellular/framework/API/CellularNetwork.h @@ -150,9 +150,9 @@ class CellularNetwork : public NetworkInterface { op_status = Unknown; op_rat = RAT_UNKNOWN; next = NULL; - op_long[0] = NULL; - op_short[0] = NULL; - op_num[0] = NULL; + op_long[0] = '\0'; + op_short[0] = '\0'; + op_num[0] = '\0'; } };