aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelupus <elupus@svn>2010-10-19 23:10:47 +0000
committerelupus <elupus@svn>2010-10-19 23:10:47 +0000
commitaecca8f49208294face3cf5fca39dc3daf948907 (patch)
treed89e25afa0aaacee1eab5cd00dccb814d6dc75b7
parent887728b93d0a8cddd6a08bfddc4079f4c2ae82f8 (diff)
fixed: one more invalid format specifiers for sscanf (hopefully final one)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34869 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r--xbmc/cores/paplayer/vgmstream/src/meta/mus_acm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/paplayer/vgmstream/src/meta/mus_acm.c b/xbmc/cores/paplayer/vgmstream/src/meta/mus_acm.c
index 7bd10a8b6e..fddf354df6 100644
--- a/xbmc/cores/paplayer/vgmstream/src/meta/mus_acm.c
+++ b/xbmc/cores/paplayer/vgmstream/src/meta/mus_acm.c
@@ -189,7 +189,7 @@ VGMSTREAM * init_vgmstream_mus_acm(STREAMFILE *streamFile) {
if (!whole_line_read) goto fail;
mus_offset += line_bytes;
- fields_matched = sscanf(line_buffer,"%s %s %s",name,
+ fields_matched = sscanf(line_buffer,"%259s %259s %259s",name,
loop_name_base_temp,loop_name_temp);