From 3e98fa97ed593df4fa2fe1e0c79c3163e5c2ad50 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Mon, 7 Nov 2011 15:40:29 +0000 Subject: [PATCH] Fix build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43211 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/mail/Notifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/mail/Notifier.cpp b/src/servers/mail/Notifier.cpp index 1de6aba0e9..eb8fa0fadf 100644 --- a/src/servers/mail/Notifier.cpp +++ b/src/servers/mail/Notifier.cpp @@ -108,7 +108,7 @@ DefaultNotifier::ReportProgress(int bytes, int messages, const char* message) // No size information available // Report progress in terms of message count instead - fNotification.SetProgress(fItemsDone / (float)fTotalITems); + fNotification.SetProgress(fItemsDone / (float)fTotalItems); } else { // No message count information either // TODO we should use a B_INFORMATION_NOTIFICATION here, but it is not