From 0577bd1a603603873628d035fec92ce96d97cef0 Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Wed, 12 Sep 2001 20:29:37 +0000 Subject: printf arguments were reversed by mistake. Fixed bug #9693. 2001-09-12 Jon Trowbridge * gui/component/select-names/e-select-names-completion.c (match_email): printf arguments were reversed by mistake. Fixed bug #9693. svn path=/trunk/; revision=12779 --- addressbook/gui/component/select-names/e-select-names-completion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/gui') diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index c5d1727300..178728fe9f 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -188,7 +188,7 @@ match_email (ESelectNamesCompletion *comp, EDestination *dest) score = len * 2; /* 2 points for each matching character */ if (name && *name) - str = g_strdup_printf ("<%s> %s", name, email); + str = g_strdup_printf ("<%s> %s", email, name); else str = g_strdup (email); -- cgit v1.2.3