From 6486160ecc525491ec614804332fbfa906b2543e Mon Sep 17 00:00:00 2001 From: chinglee-iot <61685396+chinglee-iot@users.noreply.github.com> Date: Fri, 17 May 2024 14:29:47 +0800 Subject: [PATCH] Remove const qualifier in CellularPdnConfig_t (#168) --- source/include/cellular_types.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/include/cellular_types.h b/source/include/cellular_types.h index e291d726..43b2bb11 100644 --- a/source/include/cellular_types.h +++ b/source/include/cellular_types.h @@ -681,11 +681,11 @@ typedef struct CellularIPAddress */ typedef struct CellularPdnConfig { - CellularPdnContextType_t pdnContextType; /**< PDN Context type. */ - CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */ - const char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */ - const char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */ - const char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */ + CellularPdnContextType_t pdnContextType; /**< PDN Context type. */ + CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */ + char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */ + char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */ + char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */ } CellularPdnConfig_t; /**