From 4b4be3af77e087a7b773198b526832c6cf499f44 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Fri, 17 May 2024 12:49:24 +0800 Subject: [PATCH] Remove const qualifier in CellularPdnConfig_t --- 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; /**