Mercurial > audlegacy-plugins
changeset 209:1922e0a308ad trunk
[svn] compile nicely
author | asheldon |
---|---|
date | Sat, 04 Nov 2006 00:24:20 -0800 |
parents | d58fe97fcfd1 |
children | a3391ce27d3e |
files | ChangeLog src/mplayer/interface.c |
diffstat | 2 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Nov 04 00:17:54 2006 -0800 +++ b/ChangeLog Sat Nov 04 00:24:20 2006 -0800 @@ -1,3 +1,12 @@ +2006-11-04 08:17:54 +0000 Aaron Sheldon <asheldon@uiuc.edu> + revision [416] + Compile warning fixes, xmms->audacious in a window. + + trunk/src/mplayer/xmmsmplayer.c | 2 +- + trunk/src/sap/fileinfo.c | 8 ++++---- + 2 files changed, 5 insertions(+), 5 deletions(-) + + 2006-11-03 23:33:42 +0000 Tony Vroon <chainsaw@gentoo.org> revision [414] Properly zero out proxy configuration strings if no value is retrieved, otherwise we crash and burn on shutdown.
--- a/src/mplayer/interface.c Sat Nov 04 00:17:54 2006 -0800 +++ b/src/mplayer/interface.c Sat Nov 04 00:24:20 2006 -0800 @@ -80,7 +80,7 @@ new_cfg.xmmsaudio=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(opt_xmmsaudio)); if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(opt_xmmsaudio))) new_cfg.ao=MPLAYER_AO_XMMS; - new_cfg.extra=gtk_entry_get_text(GTK_ENTRY(entry_extra_opts)); + new_cfg.extra=(gchar*)gtk_entry_get_text(GTK_ENTRY(entry_extra_opts)); cfg = bmp_cfg_db_open(); bmp_cfg_db_set_int(cfg,"xmms-mplayer","vo",new_cfg.vo);