Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3ce224c authored by Arseniy Antonov's avatar Arseniy Antonov
Browse files

Fix for parenthesis error



Added parentheses as it was suggested by compiler.
error: suggest parentheses around operand of '!' or change '&' to '&&' or '!' to '~' [-Werror=parentheses]

Change-Id: Ic3746d9804488411d10d460ddfda11f1fad8efef
Signed-off-by: default avatarArseniy Antonov <arseniy.antonov@intel.com>
parent 35a76df5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ void LogStatistics::format(char **buf,
    short spaces = 2;

    log_id_for_each(i) {
        if (!logMask & (1 << i)) {
        if (!(logMask & (1 << i))) {
            continue;
        }
        oldLength = string.length();