* mu-cmd-server.c: fix off-by-one in number of matches to display
This commit is contained in:
@ -322,7 +322,7 @@ output_found_sexps (MuMsgIter *iter, int maxnum)
|
|||||||
else
|
else
|
||||||
max = G_MAXUINT32;
|
max = G_MAXUINT32;
|
||||||
|
|
||||||
while (!mu_msg_iter_is_done (iter) && u <= max &&
|
while (!mu_msg_iter_is_done (iter) && u < max &&
|
||||||
!MU_CAUGHT_SIGNAL) {
|
!MU_CAUGHT_SIGNAL) {
|
||||||
|
|
||||||
MuMsg *msg;
|
MuMsg *msg;
|
||||||
|
|||||||
Reference in New Issue
Block a user