Merge pull request #8258 from mirelachirica/fix_compile_warning_network

Cellular: Fix compile warnings for CellularNetwork
pull/8253/merge
Cruz Monrreal 2018-10-11 10:11:54 -05:00 committed by GitHub
commit f9e5167126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -151,9 +151,9 @@ public:
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';
}
};