# HG changeset patch # User chainsaw # Date 1136120987 28800 # Node ID 244cc47a7ae3016fb93d860abc86ab0ca72a1986 # Parent 2454f2ab67708c5e640f494ca50d5e666d04c1dd [svn] We have no choice but to continue as planned. Deploy the sentinels! diff -r 2454f2ab6770 -r 244cc47a7ae3 Plugins/Input/flac/http.c --- a/Plugins/Input/flac/http.c Sun Jan 01 04:57:22 2006 -0800 +++ b/Plugins/Input/flac/http.c Sun Jan 01 05:09:47 2006 -0800 @@ -478,7 +478,7 @@ flac_cfg.stream.use_udp_channel ? udpspace : ""); if (offset && !head) { gchar *temp_dead = temp; - temp = g_strconcat ("%sRange: %ll-\r\n", temp, offset); + temp = g_strconcat ("%sRange: %ll-\r\n", temp, offset, NULL); fprintf (stderr, "%s", temp); g_free (temp_dead); } diff -r 2454f2ab6770 -r 244cc47a7ae3 Plugins/Input/timidity/libtimidity/playmidi.c --- a/Plugins/Input/timidity/libtimidity/playmidi.c Sun Jan 01 04:57:22 2006 -0800 +++ b/Plugins/Input/timidity/libtimidity/playmidi.c Sun Jan 01 05:09:47 2006 -0800 @@ -777,9 +777,9 @@ song->current_event++; } if (song->current_event->time > end_sample) - compute_data(song, &ptr, end_sample-song->current_sample); + compute_data(song, (sint8 **)&ptr, end_sample-song->current_sample); else - compute_data(song, &ptr, song->current_event->time-song->current_sample); + compute_data(song, (sint8 **)&ptr, song->current_event->time-song->current_sample); } return samples * song->bytes_per_sample; } diff -r 2454f2ab6770 -r 244cc47a7ae3 Plugins/Visualization/libvisual-proxy/lv_bmp_config.c --- a/Plugins/Visualization/libvisual-proxy/lv_bmp_config.c Sun Jan 01 04:57:22 2006 -0800 +++ b/Plugins/Visualization/libvisual-proxy/lv_bmp_config.c Sun Jan 01 05:09:47 2006 -0800 @@ -511,7 +511,7 @@ g_list_free (items); /* Create a new item marked as enabled */ - name = g_strconcat (current_actor->info->name, _(" (enabled)"), 0); + name = g_strconcat (current_actor->info->name, _(" (enabled)"), NULL); item = gtk_list_item_new_with_label (name); g_free (name); /*gtk_list_select_item (GTK_LIST(config_win->list_vis_plugins), pos);*/ @@ -577,7 +577,7 @@ _("Version: "), current_actor->info->version, "\n", current_actor->info->about, "\n", _("Author: "), current_actor->info->author, "\n\n", - current_actor->info->help, 0); + current_actor->info->help, NULL); msgwin = xmms_show_message (PACKAGE_NAME, msg, _("Accept"), TRUE, GTK_SIGNAL_FUNC(dummy), NULL); gtk_widget_show (msgwin); g_free (msg); @@ -733,7 +733,7 @@ /* Create the new item */ if (*enabled) { - name = g_strconcat (actor->info->name, _(" (enabled)"), 0); + name = g_strconcat (actor->info->name, _(" (enabled)"), NULL); item = gtk_list_item_new_with_label (name); g_free (name); } else { @@ -906,7 +906,7 @@ _("Version: "), morph->info->version, "\n", morph->info->about, "\n", _("Author: "), morph->info->author, "\n\n", - morph->info->help, 0); + morph->info->help, NULL); msgwin = xmms_show_message (PACKAGE_NAME, msg, _("Accept"), TRUE, GTK_SIGNAL_FUNC(dummy), NULL); gtk_widget_show (msgwin); diff -r 2454f2ab6770 -r 244cc47a7ae3 Plugins/Visualization/libvisual-proxy/main.c --- a/Plugins/Visualization/libvisual-proxy/main.c Sun Jan 01 04:57:22 2006 -0800 +++ b/Plugins/Visualization/libvisual-proxy/main.c Sun Jan 01 05:09:47 2006 -0800 @@ -139,7 +139,7 @@ msg = g_strconcat (_("Cannot initialize SDL!\n"), SDL_GetError(), "\n\n", PACKAGE_NAME, - _(" will not be loaded."), 0); + _(" will not be loaded."), NULL); msgwin = xmms_show_message ("libvisual-proxy", msg, _("Accept"), TRUE, GTK_SIGNAL_FUNC(dummy), NULL); gtk_widget_show (msgwin); g_free (msg);