X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogicsegment.cpp;h=aee09bd70b1808df035b3f4cf49099e8caa1ceb5;hp=3e18b85ef4143bb399c5dd1dcff2fb7e6375d7ed;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=2ad82c2e40b6865481733913a2c32735602f63c4 diff --git a/pv/data/logicsegment.cpp b/pv/data/logicsegment.cpp index 3e18b85..aee09bd 100644 --- a/pv/data/logicsegment.cpp +++ b/pv/data/logicsegment.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -308,7 +307,7 @@ void LogicSegment::get_subsampled_edges( pow2_ceil(index, MipMapScalePower)); for (; index < final_index && - (index & ~(~0 << MipMapScalePower)) != 0; + (index & ~((uint64_t)(~0) << MipMapScalePower)) != 0; index++) { const bool sample = (get_sample(index) & sig_mask) != 0; @@ -358,7 +357,7 @@ void LogicSegment::get_subsampled_edges( sig_mask)) break; - if ((offset & ~(~0 << MipMapScalePower)) == 0) { + if ((offset & ~((uint64_t)(~0) << MipMapScalePower)) == 0) { // If we are now at the beginning of a // higher level mip-map block ascend one // level