* mu-index.c: fix needless warning when msg is no longer there

This commit is contained in:
Dirk-Jan C. Binnema 2011-02-04 20:52:49 +02:00
parent b1a17a1b9b
commit 1276b77a17
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ foreach_doc_cb (const char* path, CleanupData *cudata)
{
if (access (path, R_OK) != 0) {
if (errno != EACCES)
g_warning ("cannot access %s: %s", path, strerror(errno));
g_debug ("cannot access %s: %s", path, strerror(errno));
if (!mu_store_remove (cudata->_store, path))
return MU_ERROR; /* something went wrong... bail out */
if (cudata->_stats)