Mercurial > mplayer.hg
changeset 32412:4abe60da5f28
Fix indentation.
author | reimar |
---|---|
date | Sun, 17 Oct 2010 08:59:41 +0000 |
parents | 27f6b9927eec |
children | d87b0b03f56e |
files | input/input.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/input/input.c Sun Oct 17 08:58:40 2010 +0000 +++ b/input/input.c Sun Oct 17 08:59:41 2010 +0000 @@ -1793,10 +1793,10 @@ if (stat(in_file,&st) || !S_ISFIFO(st.st_mode)) mode = O_RDONLY; in_file_fd = open(in_file, mode); - if(in_file_fd >= 0) - mp_input_add_cmd_fd(in_file_fd,1,NULL,(mp_close_func_t)close); - else - mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_INPUT_ErrCantOpenFile,in_file,strerror(errno)); + if(in_file_fd >= 0) + mp_input_add_cmd_fd(in_file_fd,1,NULL,(mp_close_func_t)close); + else + mp_msg(MSGT_INPUT,MSGL_ERR,MSGTR_INPUT_INPUT_ErrCantOpenFile,in_file,strerror(errno)); } }