summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 12:26:17 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 12:26:17 +0000
commitc11bd13ed67571e0266a8c64f34310cd56a98a87 (patch)
treea0fd42ab6e74fa41f1609136cfc8f746efa5ada4 /mplayer.c
parent2b18af7f40700e4c57a20c38c879ae70f95b8830 (diff)
downloadmpv-c11bd13ed67571e0266a8c64f34310cd56a98a87.tar.bz2
mpv-c11bd13ed67571e0266a8c64f34310cd56a98a87.tar.xz
compiler warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8734 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 4b50cfb06a..1a81fe0cf5 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -857,7 +857,7 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){
next_edl_record->next = NULL;
} else {
if( ( edl_fd = fopen( edl_output_filename, "w" ) ) == NULL ) {
- printf( "Error opening file [%s] for writing!\n" );
+ printf( "Error opening file [%s] for writing!\n", edl_output_filename );
edl_output_filename = NULL;
next_edl_record->next = NULL;
}