Skip to content

Commit 6486160

Browse files
authored
Remove const qualifier in CellularPdnConfig_t (#168)
1 parent 71d6f60 commit 6486160

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

source/include/cellular_types.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -681,11 +681,11 @@ typedef struct CellularIPAddress
681681
*/
682682
typedef struct CellularPdnConfig
683683
{
684-
CellularPdnContextType_t pdnContextType; /**< PDN Context type. */
685-
CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */
686-
const char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */
687-
const char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */
688-
const char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */
684+
CellularPdnContextType_t pdnContextType; /**< PDN Context type. */
685+
CellularPdnAuthType_t pdnAuthType; /**< PDN Authentication type. */
686+
char apnName[ CELLULAR_APN_MAX_SIZE + 1 ]; /**< APN name. */
687+
char username[ CELLULAR_PDN_USERNAME_MAX_SIZE + 1 ]; /**< Username. */
688+
char password[ CELLULAR_PDN_PASSWORD_MAX_SIZE + 1 ]; /**< Password. */
689689
} CellularPdnConfig_t;
690690

691691
/**

0 commit comments

Comments
 (0)