From 585e45d668dfd4b75759bee6dd52b4a8ab188451 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 31 Aug 2005 00:19:37 +0000 Subject: [PATCH] fix bad use of g_strconcat() --- src/plugin_xmms/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin_xmms/http.c b/src/plugin_xmms/http.c index a725bdbd..ad6475a5 100644 --- a/src/plugin_xmms/http.c +++ b/src/plugin_xmms/http.c @@ -484,7 +484,7 @@ static int http_connect (gchar *url_, gboolean head, guint64 offset) 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_strdup_printf ("%sRange: %llu-\r\n", temp, offset); fprintf (stderr, "%s", temp); g_free (temp_dead); }