summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorptt <ptt@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-05 00:51:36 +0000
committerptt <ptt@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-05 00:51:36 +0000
commitf967a47371b6427489bba06693b50ef5dab79469 (patch)
tree2b1398b742f586ab77f29d3f52a93f42919006ed /libmpdemux
parent35ca56387b20d41e9c13b4829856674dad03d771 (diff)
downloadmpv-f967a47371b6427489bba06693b50ef5dab79469.tar.bz2
mpv-f967a47371b6427489bba06693b50ef5dab79469.tar.xz
Changed MSGTR_MPDEMUX_MMST_MallocFailed to MSGTR_MemAllocFailed (msg defined two times inhelp_mp-en.h)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16907 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/asf_mmst_streaming.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/asf_mmst_streaming.c b/libmpdemux/asf_mmst_streaming.c
index fd47b53bdd..069001f5a1 100644
--- a/libmpdemux/asf_mmst_streaming.c
+++ b/libmpdemux/asf_mmst_streaming.c
@@ -525,7 +525,7 @@ int asf_mmst_streaming_start(stream_t *stream)
*/
unescpath=malloc(strlen(path)+1);
if (!unescpath) {
- mp_msg(MSGT_NETWORK,MSGL_FATAL,MSGTR_MPDEMUX_MMST_MallocFailed);
+ mp_msg(MSGT_NETWORK,MSGL_FATAL,MSGTR_MemAllocFailed);
return -1;
}
url_unescape_string(unescpath,path);