(gtk) don't #include private libtransmission headers. use g_snprintf() instead of snprintf().

This commit is contained in:
Charles Kerr
2007-07-30 20:48:43 +00:00
parent 88fe038e6e
commit e677cb8017
3 changed files with 4 additions and 9 deletions

View File

@@ -259,7 +259,7 @@ fmtpeercount( GtkLabel * label, int count )
}
else
{
snprintf( str, sizeof str, "%i", count );
g_snprintf( str, sizeof str, "%i", count );
gtk_label_set_text( label, str );
}
}