diff options
author | ptt <ptt@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-05 00:45:56 +0000 |
---|---|---|
committer | ptt <ptt@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-05 00:45:56 +0000 |
commit | 6e1d740c4a619027bb042b00575a84b13b1c6fa3 (patch) | |
tree | 70143ba6a732db6f993920c965b5c821a70666d8 | |
parent | 0d376af4ad033b29d318b31464709bd62fe4ccea (diff) |
MSGTR_MemAllocFailed printout changed to fit its definition in help/help_mp-en.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16905 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libaf/af_ladspa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libaf/af_ladspa.c b/libaf/af_ladspa.c index cc4f9c0540..f78765af4f 100644 --- a/libaf/af_ladspa.c +++ b/libaf/af_ladspa.c @@ -497,7 +497,7 @@ static int af_ladspa_load_plugin(af_ladspa_t *setup) { */ static int af_ladspa_malloc_failed(char *myname) { - af_msg(AF_MSG_ERROR, "%s: %s\n", myname, MSGTR_MemAllocFailed); + af_msg(AF_MSG_ERROR, "%s: %s", myname, MSGTR_MemAllocFailed); return AF_ERROR; } |