summaryrefslogtreecommitdiff
path: root/libs/ardour/sse_functions_xmm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/sse_functions_xmm.cc')
-rw-r--r--libs/ardour/sse_functions_xmm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/sse_functions_xmm.cc b/libs/ardour/sse_functions_xmm.cc
index c1f11c4c83..b3e3342cb8 100644
--- a/libs/ardour/sse_functions_xmm.cc
+++ b/libs/ardour/sse_functions_xmm.cc
@@ -31,7 +31,7 @@ x86_sse_find_peaks(const ARDOUR::Sample* buf, ARDOUR::nframes_t nframes, float *
current_max = _mm_set1_ps(*max);
// Work input until "buf" reaches 16 byte alignment
- while ( ((unsigned long)buf) % 16 != 0 && nframes > 0) {
+ while ( ((intptr_t)buf) % 16 != 0 && nframes > 0) {
// Load the next float into the work buffer
work = _mm_set1_ps(*buf);