summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-18 19:52:14 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-18 19:52:14 +0000
commit3c6fb12ef1db6f56cf65202205c13078e74742e6 (patch)
tree91f1b7d1c8678f42b20d0690346016b70a40ff5e /mplayer.c
parent0338dc3f54ba08368234047c6fad8336f33d77ae (diff)
downloadmpv-3c6fb12ef1db6f56cf65202205c13078e74742e6.tar.bz2
mpv-3c6fb12ef1db6f56cf65202205c13078e74742e6.tar.xz
ehh. mp_msgt->mp_msg
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1584 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mplayer.c b/mplayer.c
index c9c3a8d347..cc8eb35925 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -290,7 +290,7 @@ void exit_player(char* how){
}
#endif
- if(how) mp_msgt(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,how);
+ if(how) mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_Exiting,how);
mp_msg(MSGT_CPLAYER,MSGL_V,"max framesize was %d bytes\n",max_framesize);
if(benchmark){
double tot=video_time_usage+vout_time_usage+audio_time_usage;
@@ -337,7 +337,7 @@ void exit_sighandler(int x){
// can't stop :(
kill(getpid(),SIGKILL);
}
- mp_msgt(MSGT_CPLAYER,MSGL_FATAL,MSGTR_IntBySignal,x,
+ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_IntBySignal,x,
current_module?current_module:"unknown"
);
#ifdef HAVE_GUI
@@ -382,12 +382,12 @@ int conffile_fd;
if (parse_config_file(conf, "/etc/mplayer.conf") < 0)
exit(1);
if ((conffile = get_path("")) == NULL) {
- mp_msgt(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
+ mp_msg(MSGT_CPLAYER,MSGL_WARN,MSGTR_NoHomeDir);
} else {
mkdir(conffile, 0777);
free(conffile);
if ((conffile = get_path("config")) == NULL) {
- mp_msgt(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
+ mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_GetpathProblem);
} else {
if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) {
mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CreatingCfgFile, conffile);