Commit c75cb72e authored by Justus Piater's avatar Justus Piater Committed by Rémi Denis-Courmont

In VCDFormatStr(), made temp_str non-static

Signed-off-by: default avatarRémi Denis-Courmont <rdenis@simphalempin.com>
parent e7151604
...@@ -243,7 +243,7 @@ VCDFormatStr(const access_t *p_access, vcdplayer_t *p_vcdplayer, ...@@ -243,7 +243,7 @@ VCDFormatStr(const access_t *p_access, vcdplayer_t *p_vcdplayer,
{ {
#define TEMP_STR_SIZE 256 #define TEMP_STR_SIZE 256
#define TEMP_STR_LEN (TEMP_STR_SIZE-1) #define TEMP_STR_LEN (TEMP_STR_SIZE-1)
static char temp_str[TEMP_STR_SIZE]; char temp_str[TEMP_STR_SIZE];
size_t i; size_t i;
char * tp = temp_str; char * tp = temp_str;
bool saw_control_prefix = false; bool saw_control_prefix = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment