diff options
author | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-02-24 14:56:28 +0000 |
---|---|---|
committer | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-02-24 14:56:28 +0000 |
commit | ddefa84a43c673527480db3f260257eb65a6c437 (patch) | |
tree | b3517557a380c0d796b19ebfcad21f422cbf9b7a /mp_msg.c | |
parent | d2b49efc982ff84403fb827a1ade3252b11fb280 (diff) | |
download | mpv-ddefa84a43c673527480db3f260257eb65a6c437.tar.bz2 mpv-ddefa84a43c673527480db3f260257eb65a6c437.tar.xz |
This now works correctly thanks to clear-to-end-of-line patch
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17673 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp_msg.c')
-rw-r--r-- | mp_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ void mp_msg(int mod, int lev, const char *format, ... ){ } fprintf(stream, "\033[%d;3%dm",c>>3,c&7); header= tmp[strlen(tmp)-1] == '\n' - /*||tmp[strlen(tmp)-1] == '\r'*/; + ||tmp[strlen(tmp)-1] == '\r'; } #endif if (lev <= MSGL_WARN){ |