From f1173dd7251d51f1c8895fceb89f4ccdda912b47 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 7 Mar 2013 16:44:36 -0500 Subject: [PATCH] Fix a mixup of singular and plural Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=695339 --- gio/gdbusmessage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusmessage.c b/gio/gdbusmessage.c index 9181029b4..cc94375e1 100644 --- a/gio/gdbusmessage.c +++ b/gio/gdbusmessage.c @@ -1380,8 +1380,8 @@ read_string (GMemoryBuffer *mbuf, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, g_dngettext (GETTEXT_PACKAGE, - "Wanted to read %lu bytes but only got %lu", "Wanted to read %lu byte but only got %lu", + "Wanted to read %lu bytes but only got %lu", (gulong)len), (gulong)len, (gulong)mbuf->valid_len - mbuf->pos);