summaryrefslogtreecommitdiff
path: root/src/trg-remote-prefs-dialog.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-20 10:29:28 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-20 10:29:28 +0000
commit0a7facc248a7aa20fb10f85d01606a42ce00d1f9 (patch)
tree8bb797a8982d9a7aa44ada72adb5f980714e1f3e /src/trg-remote-prefs-dialog.c
parent4f49e799327b55be29028c392a8a8ee4ed921c83 (diff)
undo the last commit - mainly because G_GINT64_FORMAT will break some localised strings
Diffstat (limited to 'src/trg-remote-prefs-dialog.c')
-rw-r--r--src/trg-remote-prefs-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trg-remote-prefs-dialog.c b/src/trg-remote-prefs-dialog.c
index 181ba95..7fecd9b 100644
--- a/src/trg-remote-prefs-dialog.c
+++ b/src/trg-remote-prefs-dialog.c
@@ -242,7 +242,7 @@ static gboolean on_blocklist_updated(gpointer data) {
if (response->status == CURLE_OK) {
JsonObject *args = get_arguments(response->obj);
- gchar *labelText = g_strdup_printf(_("Blocklist (%li entries)"),
+ gchar *labelText = g_strdup_printf(_("Blocklist (%ld entries)"),
json_object_get_int_member(args, SGET_BLOCKLIST_SIZE));
gtk_button_set_label(GTK_BUTTON(priv->blocklist_check), labelText);
g_free(labelText);
@@ -314,7 +314,7 @@ static GtkWidget *trg_rprefs_connPage(TrgRemotePrefsDialog * win,
w = trg_json_widget_check_new(&priv->widgets, s, SGET_LPD_ENABLED, _("Local peer discovery"), NULL);
hig_workarea_add_wide_control(t, &row, w);
- stringValue = g_strdup_printf(_("Blocklist (%li entries)"),
+ stringValue = g_strdup_printf(_("Blocklist (%ld entries)"),
session_get_blocklist_size(s));
tb = priv->blocklist_check = trg_json_widget_check_new(&priv->widgets, s, SGET_BLOCKLIST_ENABLED, stringValue, NULL);
g_free((gchar *) stringValue);