comparison Plugins/Input/mpg123/http.c @ 990:05de825c2765 trunk

[svn] Use correct format string; gsize != long unsigned int.
author chainsaw
date Sun, 30 Apr 2006 16:32:42 -0700
parents a7b53e6a71e0
children 03dbf5494d40
comparison
equal deleted inserted replaced
989:a547b20938d5 990:05de825c2765
681 prebuffering = FALSE; 681 prebuffering = FALSE;
682 mpg123_ip.set_info_text(NULL); 682 mpg123_ip.set_info_text(NULL);
683 } 683 }
684 else { 684 else {
685 status = 685 status =
686 g_strdup_printf(_("PRE-BUFFERING: %luKB/%luKB"), 686 g_strdup_printf(_("PRE-BUFFERING: %zuKB/%zuKB"),
687 http_used() / 1024, 687 http_used() / 1024,
688 prebuffer_length / 1024); 688 prebuffer_length / 1024);
689 mpg123_ip.set_info_text(status); 689 mpg123_ip.set_info_text(status);
690 g_free(status); 690 g_free(status);
691 } 691 }