summaryrefslogtreecommitdiffstats
path: root/timeline/tl_matroska.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2011-07-27 08:38:12 +0300
committerUoti Urpala <uau@mplayer2.org>2011-07-27 08:38:12 +0300
commit0958620591375b41a8d21dd2a3501e1c9e5e9cba (patch)
treebbfcf29330c7408cd1991f3a81138c9bbba81419 /timeline/tl_matroska.c
parentea4cc89f36e064b3224d633df8bc08cc49178d51 (diff)
downloadmpv-0958620591375b41a8d21dd2a3501e1c9e5e9cba.tar.bz2
mpv-0958620591375b41a8d21dd2a3501e1c9e5e9cba.tar.xz
bstr: rename BSTR() -> bstr()
Rename the BSTR() function to bstr(). The former caused a conflict with some Windows OS name, and it's no longer a macro so uppercase naming is less appropriate.
Diffstat (limited to 'timeline/tl_matroska.c')
-rw-r--r--timeline/tl_matroska.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/timeline/tl_matroska.c b/timeline/tl_matroska.c
index 03b6cc3dc4..6912bac159 100644
--- a/timeline/tl_matroska.c
+++ b/timeline/tl_matroska.c
@@ -57,7 +57,7 @@ static char **find_files(const char *original_file, const char *suffix)
if (!strcmp(ep->d_name, basename))
continue;
- char *name = mp_path_join(results, directory, BSTR(ep->d_name));
+ char *name = mp_path_join(results, directory, bstr(ep->d_name));
char *s1 = ep->d_name;
char *s2 = basename;
int matchlen = 0;