* mu: use g_print, no g_message (the latter is hidden) for output

This commit is contained in:
djcb
2012-06-12 00:12:22 +03:00
parent 1774a42882
commit 46a6b445b3
3 changed files with 22 additions and 26 deletions

View File

@ -850,15 +850,10 @@ execute_find (MuStore *store, MuConfig *opts, GError **err)
static void
show_usage (void)
{
const char *usage_str =
"usage: mu find [options] <search expression>\n";
g_message ("%s", usage_str);
g_print ("%s", "usage: mu find [options] <search expression>\n");
}
MuError
mu_cmd_find (MuStore *store, MuConfig *opts, GError **err)
{