summaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 56f166c..d472ed5 100644
--- a/src/window.c
+++ b/src/window.c
@@ -124,9 +124,9 @@ delete_event_cb(MqWindow *window, GdkEvent G_GNUC_UNUSED *event)
/* The number of tabs is always greater than 1, but some non-English
* languages pluralize nouns differently depending on the number. */
message = g_strdup_printf(PL_(
- "You are about to close %d tab. "
+ "You are about to close %u tab. "
"Are you sure you want to continue?",
- "You are about to close %d tabs. "
+ "You are about to close %u tabs. "
"Are you sure you want to continue?",
num_tabs), num_tabs);
message_label = gtk_label_new(message);