From 0fa5c8f5282cbd087e8bcf0c5cd7fb68f84719b6 Mon Sep 17 00:00:00 2001 From: Philippe Saint-Pierre Date: Tue, 27 Dec 2011 23:27:20 -0500 Subject: [PATCH] Constant expression result Usage of | rather than & to check a binary mask. CID 11031. --- src/servers/mail/Notifier.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/mail/Notifier.cpp b/src/servers/mail/Notifier.cpp index eb8fa0fadf..2a80c01b7b 100644 --- a/src/servers/mail/Notifier.cpp +++ b/src/servers/mail/Notifier.cpp @@ -131,8 +131,8 @@ DefaultNotifier::ReportProgress(int bytes, int messages, const char* message) if (fItemsDone == fTotalItems && fTotalItems != 0) timeout = 1; // We're done, make the window go away faster - if ((!fIsInbound && fShowMode | B_MAIL_SHOW_STATUS_WINDOW_WHEN_SENDING) - || (fIsInbound && fShowMode | B_MAIL_SHOW_STATUS_WINDOW_WHEN_ACTIVE)) + if ((!fIsInbound && fShowMode & B_MAIL_SHOW_STATUS_WINDOW_WHEN_SENDING) + || (fIsInbound && fShowMode & B_MAIL_SHOW_STATUS_WINDOW_WHEN_ACTIVE)) fNotification.Send(timeout); }