* mu-cmd-find, mu-cmd-cfind: make 'no matches found' uniform

This commit is contained in:
Dirk-Jan C. Binnema
2011-05-24 21:43:44 +03:00
parent 93522893bf
commit b6291e1522
2 changed files with 10 additions and 7 deletions

View File

@ -180,8 +180,8 @@ run_query (MuQuery *xapian, const gchar *query, MuConfig *opts,
rv = run_query_format (iter, opts, format, count);
if (rv && count && *count == 0)
g_warning ("no matches found");
if (rv && count && *count == 0)
g_warning ("no matching messages found");
mu_msg_iter_destroy (iter);