mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix bad use of g_strconcat()
This commit is contained in:
@@ -484,7 +484,7 @@ static int http_connect (gchar *url_, gboolean head, guint64 offset)
|
|||||||
flac_cfg.stream.use_udp_channel ? udpspace : "");
|
flac_cfg.stream.use_udp_channel ? udpspace : "");
|
||||||
if (offset && !head) {
|
if (offset && !head) {
|
||||||
gchar *temp_dead = temp;
|
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);
|
fprintf (stderr, "%s", temp);
|
||||||
g_free (temp_dead);
|
g_free (temp_dead);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user