[vlc-devel] commit: In VCDFormatStr(), made temp_str non-static (Justus Piater )

git version control git at videolan.org
Sun Aug 3 10:56:43 CEST 2008


vlc | branch: 0.8.6-bugfix | Justus Piater <Justus-dev at Piater.name> | Sun Aug  3 10:42:30 2008 +0200| [3ff6f6e9161afd1e79411ed6926dfa96c5922379] | committer: Rémi Denis-Courmont 

In VCDFormatStr(), made temp_str non-static

Signed-off-by: Rémi Denis-Courmont <rdenis at simphalempin.com>
(cherry picked from commit c75cb72efbb5a0a05721cd99793b2eeb1a1eeff7)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3ff6f6e9161afd1e79411ed6926dfa96c5922379
---

 modules/access/vcdx/info.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/access/vcdx/info.c b/modules/access/vcdx/info.c
index ed03555..3a1a0c7 100644
--- a/modules/access/vcdx/info.c
+++ b/modules/access/vcdx/info.c
@@ -239,7 +239,7 @@ VCDFormatStr(const access_t *p_access, vcdplayer_t *p_vcdplayer,
 {
 #define TEMP_STR_SIZE 256
 #define TEMP_STR_LEN (TEMP_STR_SIZE-1)
-  static char    temp_str[TEMP_STR_SIZE];
+  char           temp_str[TEMP_STR_SIZE];
   size_t         i;
   char *         tp = temp_str;
   vlc_bool_t     saw_control_prefix = VLC_FALSE;




More information about the vlc-devel mailing list