mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Make read-only globals const, additional fixes
- Global variables that are never written to are marked const - Remove some EXTERN declaration - Remove unused `log_mem_multi` from logging module
This commit is contained in:
committed by
Robert Schmidt
parent
5b943f598d
commit
206aa36a47
@@ -52,7 +52,7 @@ extern uint16_t NB_UE_INST;
|
||||
|
||||
static uicc_t** uiccArray=NULL;
|
||||
|
||||
const char *hexTable="0123456789abcdef";
|
||||
const char *const hexTable = "0123456789abcdef";
|
||||
static inline uint8_t mkDigit(unsigned char in) {
|
||||
for (int i=0; i<16; i++)
|
||||
if (tolower(in)==hexTable[i])
|
||||
|
||||
Reference in New Issue
Block a user