From: Peter Sollich Date: Fri, 11 Jun 2021 15:57:05 +0000 (+0200) Subject: Removed extraneous closing parentheses causing compile errors. (#54064) X-Git-Tag: submit/tizen/20210909.063632~823 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ecc786553e9796c88e85baf97eacbe63684bad2;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Removed extraneous closing parentheses causing compile errors. (#54064) --- diff --git a/src/coreclr/tools/StressLogAnalyzer/StressLogPlugin/StressLogPlugin.cpp b/src/coreclr/tools/StressLogAnalyzer/StressLogPlugin/StressLogPlugin.cpp index 793ab64..42e7783 100644 --- a/src/coreclr/tools/StressLogAnalyzer/StressLogPlugin/StressLogPlugin.cpp +++ b/src/coreclr/tools/StressLogAnalyzer/StressLogPlugin/StressLogPlugin.cpp @@ -480,7 +480,7 @@ bool FilterMessage(StressLog::StressLogHeader* hdr, ThreadStressLog* tsl, uint32 for (int i = 0; i < s_valueFilterCount; i++) { if ((s_valueFilter[i].end < src || src < s_valueFilter[i].start) && - (s_valueFilter[i].end < dst_from || dst_from < s_valueFilter[i].start)) && + (s_valueFilter[i].end < dst_from || dst_from < s_valueFilter[i].start) && (s_valueFilter[i].end < dst_to || dst_to < s_valueFilter[i].start)) { // empty intersection with both the source and the destination