changeset 375:244cc47a7ae3 trunk

[svn] We have no choice but to continue as planned. Deploy the sentinels!
author chainsaw
date Sun, 01 Jan 2006 05:09:47 -0800
parents 2454f2ab6770
children 94507b102cdb
files Plugins/Input/flac/http.c Plugins/Input/timidity/libtimidity/playmidi.c Plugins/Visualization/libvisual-proxy/lv_bmp_config.c Plugins/Visualization/libvisual-proxy/main.c
diffstat 4 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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);
 				}
--- 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;
 }
--- 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);
--- 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);