* mu: small fix for compiler warning

This commit is contained in:
djcb 2013-09-28 11:00:38 -07:00
parent 4bdd64492a
commit 0aa1cd573d
1 changed files with 4 additions and 4 deletions

View File

@ -585,9 +585,9 @@ output_finish (MuConfig *opts)
static gboolean static gboolean
output_query_results (MuMsgIter *iter, MuConfig *opts, GError **err) output_query_results (MuMsgIter *iter, MuConfig *opts, GError **err)
{ {
unsigned count; int count;
gboolean rv; gboolean rv;
OutputFunc *output_func; OutputFunc *output_func;
output_func = output_prepare (opts, err); output_func = output_prepare (opts, err);
if (!output_func) if (!output_func)
@ -599,7 +599,7 @@ output_query_results (MuMsgIter *iter, MuConfig *opts, GError **err)
MuMsg *msg; MuMsg *msg;
if (count == opts->maxnum) if (count == opts->maxnum)
break; break;
msg = get_message (iter, opts->after); msg = get_message (iter, opts->after);
if (!msg) if (!msg)
break; break;