mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-26 21:01:03 +00:00
Add missing static on file-scope variable
This commit is contained in:
parent
23fd2bdb94
commit
2e14bd3aaf
|
@ -50,7 +50,7 @@ typedef struct
|
||||||
unsigned key_slots_initialized : 1;
|
unsigned key_slots_initialized : 1;
|
||||||
} psa_global_data_t;
|
} psa_global_data_t;
|
||||||
|
|
||||||
psa_global_data_t global_data;
|
static psa_global_data_t global_data;
|
||||||
|
|
||||||
/* Access a key slot at the given handle. The handle of a key slot is
|
/* Access a key slot at the given handle. The handle of a key slot is
|
||||||
* the index of the slot in the global slot array, plus one so that handles
|
* the index of the slot in the global slot array, plus one so that handles
|
||||||
|
|
Loading…
Reference in a new issue